Click here to Skip to main content
Licence CPOL
First Posted 30 Jan 2008
Views 7,765
Bookmarked 8 times

In-place file regex replacement

By | 31 Jan 2008 | Article
A function to apply a regex replacement to a file.

Introduction

This is a basic function for editing a file in-place, applying a Regex and a replacement string to each line.

Using the code

Here's the code:

using System.Text.RegularExpressions;

public static void ApplyRegexToFile(string filename,
        Regex match, string replacement)
{
    string temp = Path.GetTempFileName();
    using (StreamReader sr =
        new StreamReader(File.Open(filename, FileMode.Open)))
    using (StreamWriter sw =
        new StreamWriter(File.Open(temp, FileMode.Append)))
    {
        string line;
        while ((line = sr.ReadLine()) != null) {
            line = match.Replace(line, replacement);
            sw.WriteLine(line);
        }
    }
    File.Delete(filename);
    File.Move(temp, filename);
}

Here's an example of how it might be used:

ApplyRegexToFile(@"c:\Program Files\SomeProgram\SomeConfigFile",
                 new Regex(@"(someconfigsetting)=([a-z]*)", RegexOptions.IgnoreCase),
                 "$1=newsettingvalue");

License

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

About the Author

Mike McCabe



United States United States

Member



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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 1 Feb 2008
Article Copyright 2008 by Mike McCabe
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid