I have the regex <meta[^>]*content="[^"]+"> and would like to use it with vscode search and replace to remove the content attribute from the meta tags. It works fine when the tag is on one line only:
<meta http-equiv="X-UA-Compatible" content="IE=edge">
The problem is that it doesn't work for tags that span multiple lines like:
<meta http-equiv="X-UA-Compatible"
content="IE=edge">
Can i modify it to also work with multiline tags?