Regex tips
Some examples of the regular expressions.
For HTML tags
Delete tag | <[/]*tag[^>]*>') |
---|---|
Delete tag and his content | <tag[^>]*>.*') |
Clean all tags | <[^>]*>') |

Some examples of the regular expressions.
Delete tag | <[/]*tag[^>]*>') |
---|---|
Delete tag and his content | <tag[^>]*>.*') |
Clean all tags | <[^>]*>') |