I'm usin GWT 1.1.10. When I tried to split a string on the dot symbol
using String.split ( "." ), I get an array of the length of the entire
string with nothing in each of the array element. I then tried
String.split ( "\.") but then the GWT compiler says "Invalid escape
sequence". I think this is a bug.
Basically, I would like to split a string like "a.b.c" and get "a",
"b", and "c" separately.
thanks,
Mona
cheers,
Mona