Hello,
I work on a String containing XML tags. I try to recognize certain patterns:
Here my goal is to extract:Code:t <ind> test </ ind> with a <ind> </ ind> More
To isolate the text unmarked.Code:t with result
I use the following regexp: <ind> .* </ ind>
AC works well, but I just noticed that it works too well because for the example above if I return
Because ofCode:Following t
So, how can I use the Regexp effectively with xml tags, so that I can extract data from it.Code:t<ind>test </ ind> with a <ind></ ind> Following
Bookmarks