Quantcast
Channel: Splitting a string in java on more than one symbol - Stack Overflow
Browsing latest articles
Browse All 5 View Live

Answer by Deactivator2 for Splitting a string in java on more than one symbol

For that, you need to use an appropriate regex statement. Most of the symbols you listed are reserved in regex, so you'll have to escape them with \. A very baseline expression would be \+|\-|\\|\*|\=....

View Article


Answer by assylias for Splitting a string in java on more than one symbol

You can use a regular expression: String[] tokens = input.split("[+*/=-]"); Note: - should be placed in first or last position to make sure it is not considered as a range separator.

View Article


Answer by Mena for Splitting a string in java on more than one symbol

String.split takes a regular expression as argument. This means you can alternate whatever symbol or text abstraction in one parameter in order to split your String. See documentation here. Here's an...

View Article

Answer by Dennis Kriechel for Splitting a string in java on more than one symbol

You need Regular Expression. Addionaly you need the regex OR operator: String[]tokens = Stringname.split("\\+|\\-|\\*|\\/|\\=");

View Article

Splitting a string in java on more than one symbol

I want to split a string when following of the symbols encounter "+,-,*,/,=" I am using split function but this function can take only one argument.Moreover it is not working on "+". I am using...

View Article

Browsing latest articles
Browse All 5 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>