I am using regex in Find/Replace in VS IDE. I need to replace the string message="My message"
in all aspx files with an empty string. The html looks like this
<input id="test" message="My message"/>
I am trying to use the regex to find for message="{.*}"
but it doesn't work.