View Single Post
  #4 (permalink)  
Old 11-09-2007, 08:49 PM
ShoeNinja's Avatar
ShoeNinja ShoeNinja is offline
Senior Member
 
Join Date: Oct 2007
Posts: 124
Rep Power: 0
ShoeNinja is on a distinguished road
Send a message via AIM to ShoeNinja
Default
Just do what Lang said inside a loop.

Code:
for(int i = 0; i < array.length; i++){
  array[i] = "This is the string at index" + i;

}
Reply With Quote