So I have a string that is like this: Some text here?Some number here and I need to split those, I am using string.split("\\?") but if I have a string like this: This is a string with, comma?1234567 I have it splitted in the comma too. "," And if I have this String: That´s a problem here?123456 It also splits on "´" So how can I fix this?
|
|
I am not seeing this behaviour: (nor would I expect to)
yields: hello 1000 Introducing a comma "," or an apostrophe "'" doesn't make any difference to the split:
yields: he,llo 1000
yields: he'llo 1000 The spilt also works fine if you have any spaces in your input string. I can only suggest that your regex is not what you think it is! |
||||
|
|
|
Split method needs a regex to function correctly. Try
This should solve regex problem. |
|||||
|
|
May be you need to use '\ \ \ ?' ( remove spaces ) expression Sorry can`t test it now. Hope it helps. |
|||||
|
|
Looks like a typical regex problem IAm using this for exmaple to split name (code) in to a pair with the name and the code seperate:
|
|||||||||||||
|
|
this is the solutution: (EDIT: it's even simpeler)
i tested it:
[EDIT after remark below] I have added a test, Now I don;t see what's the problem, this works as well (and is even more simpel):
|
|||||
|