Click here to Skip to main content
15,885,309 members
Articles / Programming Languages / XML

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

Rate me:
Please Sign up or sign in to vote.
4.91/5 (36 votes)
12 Oct 2009CPOL3 min read 185.3K   1.6K   117   74
A .NET Regular Expressions Find and Replace add-in for Visual Studio 2008
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:

XML
<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:

XML
<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)


Written By
Software Developer
United States United States
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.

Comments and Discussions

 
GeneralRe: query regarding multiline regular eexpression. Pin
Stone Free4-Aug-09 7:44
Stone Free4-Aug-09 7:44 
GeneralRe: query regarding multiline regular eexpression. Pin
SidharthaShenoy4-Aug-09 10:13
SidharthaShenoy4-Aug-09 10:13 
GeneralRe: query regarding multiline regular eexpression. Pin
SidharthaShenoy4-Aug-09 10:15
SidharthaShenoy4-Aug-09 10:15 
GeneralSweet app, but.... Pin
DiscoJimmy5-Jan-09 8:22
DiscoJimmy5-Jan-09 8:22 
GeneralBe careful with spécial caracters Pin
yocec30-Dec-08 1:52
yocec30-Dec-08 1:52 
GeneralGreat Job Pin
Viktar Karpach21-Oct-08 10:32
Viktar Karpach21-Oct-08 10:32 
GeneralFind in Entire Solution is broken and annoying Pin
Rob Siklos18-Jul-08 5:45
Rob Siklos18-Jul-08 5:45 
GeneralRe: Find in Entire Solution is broken and annoying Pin
jhillman19-Jul-08 0:53
jhillman19-Jul-08 0:53 
Rob,

Thanks for the feedback. I don't think this is because of VS2008; I will look into both of those issues and post an update when I can. I have an idea about the cause of the first problem, and I think I should be able to follow your advice with the second one. I seem to remember that there was some reason I had to open every file, but I certainly shouldn't have to open the file in the IDE when in Find All mode.

Thanks again. Check back here in a few days, and I should have an update available.

Jeff
GeneralRe: Find in Entire Solution is broken and annoying Pin
jhillman22-Jul-08 18:54
jhillman22-Jul-08 18:54 
GeneralRe: Find in Entire Solution is broken and annoying Pin
jhillman26-Jul-08 2:52
jhillman26-Jul-08 2:52 
Generalgood job Pin
aruan11-Jul-08 13:59
aruan11-Jul-08 13:59 
GeneralVS 2005 closes when searching Pin
mikebk3-Jul-08 9:18
mikebk3-Jul-08 9:18 
GeneralRe: VS 2005 closes when searching Pin
jhillman3-Jul-08 16:50
jhillman3-Jul-08 16:50 
GeneralRe: VS 2005 closes when searching Pin
mikebk7-Jul-08 6:50
mikebk7-Jul-08 6:50 
GeneralRe: VS 2005 closes when searching Pin
jhillman7-Jul-08 15:47
jhillman7-Jul-08 15:47 
GeneralRe: VS 2005 closes when searching Pin
jhillman10-Jul-08 22:40
jhillman10-Jul-08 22:40 
GeneralRe: VS 2005 closes when searching Pin
mikebk14-Jul-08 7:39
mikebk14-Jul-08 7:39 
GeneralRe: VS 2005 closes when searching Pin
jhillman14-Jul-08 21:40
jhillman14-Jul-08 21:40 
GeneralRe: VS 2005 closes when searching Pin
mikebk15-Jul-08 2:59
mikebk15-Jul-08 2:59 
GeneralRe: VS 2005 closes when searching Pin
jhillman15-Jul-08 4:16
jhillman15-Jul-08 4:16 
GeneralError when starting Visual Studio 2005 Pin
Laoujin30-Jun-08 4:35
Laoujin30-Jun-08 4:35 
GeneralRe: Error when starting Visual Studio 2005 Pin
jhillman30-Jun-08 16:07
jhillman30-Jun-08 16:07 
GeneralRe: Error when starting Visual Studio 2005 Pin
yocec30-Dec-08 1:07
yocec30-Dec-08 1:07 
AnswerRe: Error when starting Visual Studio 2005 Pin
adparadox018-Jul-08 7:55
adparadox018-Jul-08 7:55 
GeneralRe: Error when starting Visual Studio 2005 Pin
silas_yao13-Mar-09 2:08
silas_yao13-Mar-09 2:08 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.