Reversing assignment statements with Find and Replace in VS 2010

One of the blogs I read is. In a recent post he discussed the power of using Find and Replace with regular expressions and it gave me an idea about how to quickly reverse a set of assignment statements.

Lets say you have the following code:

Me.FirstNameTextBox.Text = customer.FirstName Me.LastNameTextBox.Text = customer.LastName Me.TelephoneTextBox.Text = customer.Telephone Me.EmailTextBox.Text = customer.Email

And you want to reverse the assignments so that you are writing the textboxes back into the customer object (generally the next thing you would want to do). Rather than doing it by hand, or using some macro, you can use the find and replace window with a regular expression:

FindAndReplace

This works because the expression matches any character (.) zero or more times (*), followed by an equals sign then any character zero or more times. In other words, anything followed by “=” followed by anything. The two anythings in the expression are enclosed with curly brackets to make them tagged expressions, which means they can be used in the replace expression. \1 will be the first tagged expression, \2 then next and so on. So our replace with expression just says replace a=b with b=a.

So what do you end up with? Well, this of course:

customer.FirstName = Me.FirstNameTextBox.Text customer.LastName = Me.LastNameTextBox.Text customer.Telephone = Me.TelephoneTextBox.Text customer.Email = Me.EmailTextBox.Text

kick it on DotNetKicks.com

This article is part of the GWB Archives. Original Author: DarrenFieldhouse

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.