If I have a string like this:
FOO[BAR]
I need a generic way to get the "BAR" string out of the string so that no matter what string is between the square brackets it would be able to get the string.
e.g.
FOO[DOG] = DOG
FOO[CAT] = CAT
|
|
|
You should be able to use non-greedy quantifiers, specifically *?. You're going to probably want the following:
This will give you a pattern that will match your string and put the text within the square brackets in the first group. Have a look at the Pattern API Documentation for more information. To extract the string, you could use something like the following:
|
|||||||||
|
|
the non-regex way:
alternatively, for slightly better performance/memory usage (thanks Hosam):
|
|||||||||||||
|
|
This is a working example : RegexpExample.java
It displays :
|
||||
|
|
|
I think your regular expression would look like:
Assuming that FOO going to be constant. So, to put this in Java:
|
|||
|
|
This will return the value between first '[' and last ']' Foo[Bar] => Bar Foo[Bar[test]] => Bar[test] Note: You should add error checking if the input string is not well formed. |
|||
|
|
|
If you simply need to get whatever is between
If you need it to be of the form
This will validate things like Main issue The main problem is when you want to extract the content of something like this:
The Regex won't work and will return
None of the Regexes will work. The most accurate Regex to extract the proper content in all cases would be a lot more complex as it would need to balance A simpler solution If your problems is getting complex and the content of the
This is more pseudo-code than real code, I'm not a Java coder so I don't know if the syntax is correct, but it should be easy enough to improve upon. |
||||
|
|
|
assuming that no other closing square bracket is allowed within, /FOO\[([^\]]*)\]/ |
|||
|
|
|
I'd define that I want a maximum number of non-] characters between
|
||||
|
|
|
Like this its work if you want to parse some string which is coming from mYearInDB.toString() =[2013] it will give 2013
|
|||
|
|