Regex: Delete special characters from the content of a html tag
Solution 1:
SEARCH: (?:<meta name="keywords" content="|\G(?!^)).*?\K[',]+(?=.*?"/>)
REPLACE BY: LEAVE EMPTY
- CHECK Wrap around
- CHECK Regular expression
- Replace all
SEARCH: (?:<meta name="keywords" content="|\G(?!^)).*?\K[',]+(?=.*?"/>)
REPLACE BY: LEAVE EMPTY