I apologize if it's a sort of beginning question, but I couldn't find that in the help file (or figure it out myself). I'd like to match all blackquotes inside an HTML file. E.g. <blockquote>any text</blockquote>. I constructed the following regular expression:
regEx.Pattern = "<blockquote>.*<\/blockquote>"
Unfortunately .* does not include new line character, so only when both tags are on the same line I get what I want. Otherwise - niente. Any gurus who could give a hand to a novice?
---
---
regEx.Pattern = "<blockquote>.*<\/blockquote>"
Unfortunately .* does not include new line character, so only when both tags are on the same line I get what I want. Otherwise - niente. Any gurus who could give a hand to a novice?
---
---