Filling an array

bluedude

Well-Known Member
Licensed User
Longtime User
Hi,

I'm trying to fill an array by doing this:

for i=0 to 10
arrData=Array as string ("test")
next i

The function description in B4A says:

Days=Array as string ("Sunday","Monday"...)

However, I need to do this in a for loop. I'm trying to create my own Split command.

It seems not to work, how to do this?
 
Top