Looking for some RegEx advice. Working on trying to find hard coded strings in a C# .net app. All the properly coded strings in the aspx pages look like so:
Text="<%$ Resources:Global, Delete %>"
I'm trying to find any string that would look like Text="Delete"
or any hard coded strings. I've came up with Text=\"(?!<%$ )?\"
to basically say find any string that does start out with text="<%$"
but to no avail. Advice?