I want to split sentence that has +
I code this:
String[]s;
String a;
s=a.split("+");
but it throw this exeption:
Exception in thread "main" java.util.regex.PatternSyntaxException: Dangling meta character '+' near index 0
what should I do??
thanks