I want to find in visual studio (C#) in WPF all the occurrences of the pattern:
Content="
and after the " I want to find only the occurrences that do not continue with {
for example:
I want to find: Content="This is a button"
I do not want to find: Content="{StaticResource ThisIsAButton}"
I am very bad at regular expression.
Any Idea ? Thanks