ok, I'm pretty embarrassed to be posting such a simple question, I feel like I've done this in much harder applications like a million times...
String[] wordVar = text.split("$");
Why does the above code not split the String 'text' at each occurrence of a "$"? Is the "$" a special character or something? when I execute this code and then get text.length;
it returns 1 regardless of the number of "$"s..
What am I doing wrong?