Hi I have been trying to search a string pattern in Visual Studio 2010 using regex. The string pattern is something like "abc[somevar].ppfunc"
Now "abc" and "ppfunc" are fixed terms but "somevar" could be any string of any length. For example: it could be abc[xyz].ppfunc or abc[ghid].ppfunc or abc[blah].ppfunc
What wild card should I use in place of "somevar" so that search results should contain all possible words present in the code.
I tried abc[].ppfunc and abc[.].ppfunc (in Find and replace box of VS) but it didn't work.
any quick suggestions ?