I am trying to split a string on a question mark - obviously this is a special character, but using a backslash to cope with this does not seem to work.
Expand|Select|Wrap|Line Numbers
- String loc="firstpart?secondpart";
- String[] l = loc.split ("/?");
- String loc = l[0];
Please help !
basm101