Imagine I have the following text: This is a text
If I only want to get "This is a text", then the regular expression will be:
(?<=\<tag\>).*(?=\<\/tag\>)
Imagine now that the text is something like:
<tag> <Arial>This is a text<Arial></tag>
What would be now the regular expression that gets "This is a text" and ignores everything else? The word Arial may not be fixed and varies.
Thanks in advance.