简体   繁体   中英

C# regex with line breaks

Hello I have the following code

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {

            string searchText = "find this text, and some other text";
            string replaceText = "replace with this text";


            String query = "%SystemDrive%";
            string str = Environment.ExpandEnvironmentVariables(query);
            string filePath = (str + "mytestfile.xml"); 

            StreamReader reader = new StreamReader( filePath );
            string content = reader.ReadToEnd();
            reader.Close();

            content = Regex.Replace( content, searchText, replaceText );

            StreamWriter writer = new StreamWriter( filePath );
            writer.Write( content );
            writer.Close();
        }
    }
}

the replace doesn't find the search text because it is on separate lines like

find this text,
and some other text.

How would I write the regex epression so that it will find the text.

To search for any whitespace (spaces, line breaks, tabs, ...), you should use \\s in your regular expression:

string searchText = @"find\s+this\s+text,\s+and\s+some\s+other\s+text";

Of course, this is a very limited example, but you get the idea...

Why are you trying to use regular expressions for a simple search and replace? Just use:

content.Replace(searchText,replaceText);

You may also need to add '\\n' into your string to add a line break in order for the replace to match.

Try changing search text to:

string searchText = "find this text,\n" + 
                    "and some other text";

This is a side note for your specific question, but you are re-inventing some functionality that the framework provides for you. Try this code:

static void Main(string[] args)
{
    string searchText = "find this text, and some other text";
    string replaceText = "replace with this text";

    string root = Path.GetPathRoot(Environment.SystemDirectory);
    string filePath = (root + "mytestfile.xml"); 

    string content = File.ReadAllText(filePath);
    content = content.Replace(searchText, replaceText);

    File.WriteAllText(filePath, content);  
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM