After writing code to populate textboxes from an object, such as:
txtFirstName.Text = customer.FirstName;
txtLastName.Text = customer.LastName;
txtAddress.Te
Before VS2012:
{[a-zA-Z\.]*} = {[a-zA-Z\.]*};\2 = \1;With VS2012 (and presumably later) which uses .NET regular expressions:
([a-zA-Z\.]*) = ([a-zA-Z\.]*);${2} = ${1};.* (regular expressions) icon is selected (the third one along under the replacement textbox)