I want to find all row["xxx"] from my C# Code File using Visual Studio 2010's search fucntinality
Where, xxx is any alphabetic string
I tried :
([row]{3})[\W]["][^\W]+["][\W]
[row]{3}\"([^\$]+)\"
[\w{3}]\"([^\$]+)\" ---> Did nort returned all expected results
[\W{3}]\"(\W+)\"
\w{3}\W\"(\w+)\"\W
\([a-z A-Z]){3}\W"(\w+)"\W