Hi all,
Just started looking at regular expressions, and it appears that it could help in a problem that I used to spen ages working on.
I have a string for example:
"This [is] a word [document for windows] and it looks [very nice]"
What I want is to return the words in the square brackets. So the answer to the above (useless) string would be:
"is"
"document for windows"
"very nice"
I have tried a few examples, but they don;t work, what Regex should I use.
Thanks.