Question
Why can't I split a string with the dollar sign?
I want to split a string which has content like this:
a$b$c
but when I use:
String data=...
data.split("$");
it does not recognize $ and do not split string but when I replace $ by some Letter like X it works. does anyone has any Idea?