I want to split the string say [AO_12345678, Real Estate] into AO_12345678 and Real Estate
how can I do this in Java using regex?
main issue m facing is in avoiding "[" and "]"
please help
|
|
Another option using regular expressions (RE) capturing groups:
If speed/memory is a concern, the RE can be optimized to (using Possessive quantifiers instead of Greedy ones) |
||||
|
|
|
Does it really have to be regex? if not:
|
|||
|
|
|
I'd go the pragmatic way:
If the string is always surrounded with '[]' you can just substring it without checking. |
||||
|
|
|
One easy way, assuming the format of all your inputs is consistent, is to ignore regex altogether and just split it. Something like the following would work:
Of course you can tailor this as you wish - you might want to check whether the braces are present before removing them, for example. Or you might want to keep any spaces before the comma as part of the first string. This should give you a basis to modify to your specific requirements however. And in a simple case like this I'd much prefer code like the above to a regex that extracted the two strings - I consider the former much clearer! |
|||||
|
|
you can also use StringTokenizer. Here is the code:
s1=AO_12345678 s1=Real Estate Refer to javadocs for reading about StringTokenizer http://download.oracle.com/javase/1.4.2/docs/api/java/util/StringTokenizer.html |
|||
|
|