C# Language Common String Operations Replacing a string within a string

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

Using the System.String.Replace method, you can replace part of a string with another string.

string s = "Hello World";
 s = s.Replace("World", "Universe"); // s = "Hello Universe"

All the occurrences of the search string are replaced.

This method can also be used to remove part of a string, using the String.Empty field:

string s = "Hello World";
s = s.Replace("ell", String.Empty); // s = "Ho World"


Got any C# Language Question?