Click here to Skip to main content
Click here to Skip to main content

.NET Regular Expressions Find and Replace Add-In for Visual Studio 2008

By , 12 Oct 2009
 
replace_in_files.PNG

Introduction

This add-in is for anyone who wants to use Regular Expressions to find and replace in Visual Studio, but doesn't want to use the strange Regular Expression syntax of the built-in dialog. This add-in provides a new dialog that uses .NET's Regular Expressions to find and replace.

Background

I worked on this a couple of years ago, so I don't remember everything that motivated me to do it. I was tired of the crippled version of Regular Expressions available within the Visual Studio IDE. I found this article about a Visual Studio add-in that sounded good enough, but it didn't work with Visual Studio 2005. My add-in is partly based on that add-in, with several bug fixes and additional features.

The project has now been updated for use in Visual Studio 2008.

Using the Add-In

If you just want to use the add-in, download the add-in files and copy them to your "C:\<user folder>\Visual Studio 2008\AddIns" directory. If you want to mess around with the source (or fix any glaring bugs), download the source and run the project.

To debug the project, move "RegexFindAndReplace - For Testing.AddIn" to "C:\<user folder>\Visual Studio 2008\Addins".

You will also need to update the section that looks like this in RegexFindAndReplace.csproj:

<Content Include="C:\<user folder>
	\Visual Studio 2008\Addins\RegexFindAndReplace - For Testing.AddIn">
<Link>RegexFindAndReplace - For Testing.AddIn</Link>
</Content>

Within "RegexFindAndReplace - For Testing.AddIn", you need to update this section to point to the location of the project:

<Assembly><project directory>\RegexFindAndReplace\bin\RegexFindAndReplace.dll</Assembly>

The following Debug project settings also need to be updated:

  • Start external program: C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe
  • Command line arguments: /resetaddin RegexFindAndReplace.Connect
  • Working directory: C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\

Once everything is installed, you will find a new entry in the Edit|Find and Replace menu:

menu.png

There is also a keyboard shortcut of Ctrl+Shift+X, for those of you who avoid the mouse when you can.

Points of Interest

This add-in provides most of the functionality as the built-in Find and Replace dialog, with a few additional options. In the Find in Files mode, the results are printed to the Output window:

output.PNG

To the right of the Find or Replace text boxes, there is a drop-down menu that has several common constructs used in Regular Expressions or replacement strings. The captured sub-expressions menu lists all of the back references available, and when one is selected, the corresponding expression is highlighted in blue in the text box:

highlighted_subexpressions.PNG

I have had a lot of fun working on this; please contact me about feature requests or bugs, and I will do my best to make sure this is as useful as possible.

Limitations

Each file that is searched for matches is read into memory; this means that files too large to fit into memory will not be able to be searched with this dialog. The reason for this is that regular expressions can span more than one line. In the future, I may add a check for newline characters in the regular expression to see if the file can be processed one line at a time.

History

  • 13 Jun 2008
    • Original article posted
  • 28 July 2008
    • Improved algorithm for processing files in Find All and Replace All modes
    • Added "Stop" button to enable cancelling a Find All or Replace All operation
  • 5 March 2009
    • Updated the article and project for Visual Studio 2008
    • Fixed the "Object reference not set to an instance of an object." error message with certain types of Visual Studio projects
    • Fixed the way the dialog window is displayed
  • 8 October 2009
    • Added better support for web projects with code-behind files
    • Fixed issue with file encoding with Replace All
  • 12 October 2009 
    • Added use of the CollapsibleGroupBox class described in this article

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

jhillman
Software Developer
United States United States
Member
I am a software developer currently working in Salt Lake City, Utah. I work primarily with C# for my job, but I mess around with C, Perl, and Windows PowerShell for fun.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionVS2010?memberdigger6916 Apr '10 - 10:54 
So... love this add-in and it will be some time before I migrate to 2010, but... any plans for this in 2010? I understand add-ins are a new animal in 2010.
AnswerRe: VS2010?memberjhillman16 Apr '10 - 11:21 
I just finished installing VS2010 this afternoon.   I don't know when I will get a chance, but I will do my best to make it work.
GeneralRe: VS2010?memberdigger6916 Apr '10 - 11:28 
Excellent. Looking forward. Thank you for your work.
GeneralRe: VS2010?memberjhillman16 Apr '10 - 12:12 
Good news.   The Addin seems to work (almost) as-is with VS2010.   You just need to put the binaries in the VS2010 Addins directory.   You will find it here (if you are using XP):
 
C:\Documents and Settings\<username>\My Documents\Visual Studio 2010\Addins
 
Copy RegexFindAndReplace.dll and RegexFindAndReplace.Addin to the above directory, and then open RegexFindAndReplace.Addin in a text editor and change the version number to 10.0:
 
<Extensibility xmlns="http://schemas.microsoft.com/AutomationExtensibility">
     <HostApplication>
          <Name>Microsoft Visual Studio</Name>
          <Version>10.0</Version>
...
 
That seemed to do the trick for me.
 
Jeff
GeneralRe: VS2010?memberdigger6916 Apr '10 - 12:15 
Sweet. Just got to get 2010 installed now Smile | :) Thanks for the replies.
GeneralRe: VS2010? [modified]memberdigger699 Nov '10 - 13:36 
Rats - just am getting around to trying it and I am getting "The Add-in... failed to load or caused an exception.... Error number: 80131515". I have VS2010 ultimate (4.0.30319). The google results I'm seeing for that refer to loading an addin from a network share, which I'm not.
 
I re-downloaded the addin and extracted directly to Visual Studio 2010\Addins and changed the version in the .Addin file, same error.
 
I am running Windows 7 64bit as well... I'll try recompiling the source and give it another go.
 
... When I looked at the properties for the dll, I saw the verbage that "This file came from another computer and might be blocked...". I clicked Unblock and viola, it's working now. Thank you. Hopefully this may help others.

modified on Tuesday, November 9, 2010 7:52 PM

GeneralRe: VS2010?memberjhillman10 Nov '10 - 3:46 
I'm glad you figured it out. I've been using the Addin with VS2010 for quite a while, so when I first saw your message, I was pretty confused. Thanks for posting your solution.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 12 Oct 2009
Article Copyright 2008 by jhillman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid