#How do I get all the letters from a bunch of 512 character strings and place in array?

22 messages · Page 1 of 1 (latest)

toxic heart
#

How do I get all the letters from a bunch of 512 character strings and place in array?
basically i need a stream of characters going into string variable so like 1 iteration its A then its B then C, etc etc
and the inputs would be 1. A, B C 2. D E F, etc etc.

rigid pulsar
#

I think the only way is to iterate through each one Individually and add them

Note: lists can only store up to 64 items so you'll need many if you need 512 things

toxic heart
#

I worded it wrong lol

#

there

winter lantern
toxic heart
#

So basically

#

There is a list of maxed out strings,

#

and then each character in the strings

#

is put into a string variable

#

so, pretending like 3 is the max:

#

--STRING LIST--
1.A,B,C
2.D,E,F
3.G,H,I

#

on iteration one the string variable will be A

#

then

#

b

#

then

#

c

#

then d

#

etc.

winter lantern
toxic heart
winter lantern
#

Use string substring and a int variable+1

#

Then run it until all characters are done