a bit of a newb when it comes to regular expressions -- so forgive me if this is covered elsewhere -- i did a search on this forum but could not find any info.
I need to replace some <br> tags that have random spacing, and also comes in various numbers, but always follow text, and end with a comment tag.
so for example, a document might have:
orSome text<br>
<br>
<br>
<!-- comment tag -->
and the <br> might have a tab space in front of it as well.Some text <br>
<br>
<br>
<br>
<!-- comment tag -->
any ideas ?
I know the [[:space:]] command should help, but using it to find more than one space hasn't worked for me ...
thanks.