I have been experimenting with gitching images lately for a project and I want to now experiment with glitching Text. I am still a novice at coding and I would appreciate any help that this community can put forward. I have the code for loading a string and this is how far I have gotten so far.
//// to import the data need these things ////
String[] lines;
String[] coloum = new String[9];//number of items on list
int sod; // stands for size of document
void setup(){
//// load the data into the program////
lines = loadStrings("DICT.TXT");
sod = lines.length;
//// use this first number to determin the size of doc ////
println(lines.length);
////
for(int a = 1; a < 213560; ++a) {
coloum = split(lines[a],'\t');/// use the things you devide up your line so
///// this tis tab right now change it to ',' if you need
////from here you are now needing to place your data into their holding place ////
////in this case i am printing it to show you what would be in coloum 0...////