vote up 2 vote down star
2

I have a solution with multiple projects and we need to do some serious global replacements.

Is there a way to do a wildcard replacement where some values remain in after the replace?

So, for instance if I want every HttpContext.Current.Session[“whatevervalue”] to become HttpContext.Current.Session[“whatevervalue”].ToString() the string value being passed in will be respected? I don’t want to replace “whatevervalue” I just want to append a .ToString() where the pattern matches.

Is this possible in Visual Studio?

flag

5 Answers

vote up 8 vote down check

First, Backup your Projects, just in case... Always a good idea before mass replacements.

Then, in the Find/Replace Dialog, select the Use Regular Expressions checkbox:

In the Find box, use the pattern:

HttpContext\.Current\.Session\["{.@}"\]

and in the Replace box, use:

HttpContext.Current.Session["\1"].ToString()
link|flag
For frequently I use RegEx, you would think I would already know that. Thanks! – Ian Patrick Hughes Oct 13 '08 at 21:00
Also, be careful to test it first; some versions of VS have an off-by-one error in the RegEx replace function. – Nick Oct 13 '08 at 21:18
If it's possible that your identifiers include embedded quotes (e.g., Session["some \" key"], you'll want to use David Mitchell's regex: stackoverflow.com/questions/198984/… – Bradley Grainger Oct 13 '08 at 21:20
Awesome. I didn't know you could do this! – JasonS Oct 13 '08 at 21:20
Then off some vote-ups. You were not alone, apparently. :) – Ian Patrick Hughes Oct 13 '08 at 21:31
show 2 more comments
vote up 4 vote down

Easy...use regular expressions and grouping.

Find what: (HttpContext.Current.Session[“whatevervalue”])

Replace with: \0.ToString();

Remember to check the Use: and select Regular expressions

link|flag
I must be missing something. I tried a practice run on a selected set of text before posing a question. It seemed to find but not replace correctly. I'll try again, thanks. – Ian Patrick Hughes Oct 13 '08 at 20:55
wouldn't HttpContext.Current.Session[“.@”] be a little better? – hova Oct 13 '08 at 20:56
Voted up for use of \0. – Jay Bazuzi Oct 13 '08 at 21:00
vote up 2 vote down

You want to open the "Find Options" expander and select the "Use Regular Expressions" option. After you've done that, you want these as your find/replace entries:

Find:

HttpContext\.Current\.Session\[{("([^"]|\")*")}\]

Replace:

HttpContext.Current.Session[\1].ToString()

Additional Note:

Once you've enabled regular expressions option, you'll be able to use the right-pointing triangle buttons to access snippets of Visual Studio's Regex syntax.

Also note that Visual Studio's Regex syntax is pretty ghetto, as it hasn't changed since the days of Visual Studio 6 (or earlier?)--so don't take any syntax elements for granted.

For example, one might expect that my find regex above is broken because the backslash before the double-quote is not properly escaped, but in reality, putting a double-backslash there will break the expression, not fix it.

link|flag
Thanks for the tip. I have been an avid user of RegEx buddy since Atwood first posted about it a while ago. I am never that surprised by the syntax differences between various RegEx implementations. Thanks for the heads-up! – Ian Patrick Hughes Oct 13 '08 at 21:16
vote up 0 vote down

You can use Visual Assist for tasks like this. It's a powerful tool for different kinds of refactoring.

link|flag
Not for this one. – Lev Oct 13 '08 at 20:54
vote up 0 vote down

You could also consider using the free download tool Refactor available at http://www.devexpress.com/Products/NET/IDETools/RefactorASP/

It does a whole lot more than just find & replace, which they call renaming members with more understandable names. Its various features will easily help you to improve your code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.