Languages
[Edit]
EN

C# / .NET - string replace

1 points
Created by:
Frida-Timms
607

In C# / .NET it is possible to replace part of string in few ways.

1. String.Replace method example

string input = "My name is John.";
string output = input.Replace("John", "Kate");

Console.WriteLine(output);

Output:

My name is Kate.

2. Regex.Replace instance method example

Regex regex = new Regex("John");

string input = "My name is John.";
string output = regex.Replace(input, "Kate");

Console.WriteLine(output);

Output:

My name is Kate.

3. Regex.Replace static method example

string pattern = "John";

string input = "My name is John.";
string output = Regex.Replace(input, pattern, "Kate");

Console.WriteLine(output);

Output:

My name is Kate.

4. References

  1. String.Replace Method - Microsoft Docs
  2. Regex.Replace Instance Method - Microsoft Docs
  3. Regex.Replace Static Method - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join