#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)
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
I'm not sure what you want there ? You want to separate 3 characters by 3?
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.
So you want a variable for each string or a variable that does all characters 1 by 1?
a variable that does all characters 1 by 1