Note to myself: Useful Regular Expressions
Find all opening and closing font tags with any given attribute to replace them with nothing: This looks for a “<” followed by zero or one “/” followed by the string “font” followed by zero or any character followed by a “>”. This means you shouldn’t have “<” or “>” in your attributes. If you […]