I know very little about regular expressions and related methods. However, I want to use the split method in lieu of StringTokenizer. I want to split a string displayed in a text field by white space. Is this the correct format?
String [] input; String str; input[] = str.split(" "); // Is this right to accomplish this?