C# String Replace() Method
Last Updated :
11 Mar, 2025
In C#, the Replace() method is used to replace all occurrences of a specified substring or character in a string with another substring or character. This method is particularly useful for string manipulation tasks, such as formatting or cleaning up data.
Example 1: Using Replace() method to replace "World" with "Geeks" in a string.
C#
// C# program to illustrate
// the use of Replace() Method
using System;
class Geeks
{
public static void Main()
{
// String initialization and Declaration
string s = "Hello, World";
// Before Replacing
Console.WriteLine("Before Replacing: " + s);
// Using Replace() method
s = s.Replace("World", "Geeks");
// After Replacing
Console.WriteLine("After Replacing: " + s);
}
}
OutputBefore Replacing: Hello, World
After Replacing: Hello, Geeks
Explanation: In the above example, we use a Replace() method of the String class to replace the World with Geeks.
Syntax of String Replace() Method
public string Replace(char oldChar, char newChar)
public string Replace(string oldValue, string newValue)
Parameters:
- oldChar: The character which is to be replaced.
- newChar: The new character will be replaced with the old character.
- oldValue: The old substring which is to be replaced.
- newValue: New substring that will replace with the old value.
Return Type:
- This method returns a new string (System.String) in which all the occurrences of the previous value change with the specified values.
Exceptions:
- ArgumentNullException: If OldValue or Oldchar both are null.
- ArgumentException If OldValue or Oldchar is the empty string ("").
Example 2: Using the Replace() method to replace all occurrences of a specified substring with a new substring.
C#
// Using Replace(String oldValue, String newValue) method
using System;
class Geeks
{
static void Main(string[] args)
{
string s = "Hello, Geek";
string res = s.Replace("Geek", "Geeks");
Console.WriteLine("" + res);
}
}
Explanation: In the above example, the Replace() method replaces "Geek" with "Geeks" in the original string and returns a new string.
Example 3: Using the Replace() method to replace the specified character from the string.
C#
// Using the Replace() method to replace the
// specified character from the string
using System;
class Geeks
{
static void Main(string[] args)
{
string s = "Hello, World!";
string res = s.Replace('o', 'a');
Console.WriteLine("Modified String: " + res);
}
}
OutputModified String: Hella, Warld!
Explanation: In the above example, we use the Replace() method which replaces all occurrences of a specified character with a new character. As shown the character 'o' replaces with 'a'.
Example 4: Using the Replace() method in a Case-Sensitive Manner.
C#
// Using Replace() method with Case Sensitive
using System;
class Geeks
{
static void Main(string[] args) {
string s = "Hello, World!";
string res = s.Replace("hello", "Geeks");
Console.WriteLine("" + res);
}
}
Explanation: In the above example, the string value passed as "hello" (lowercase) is not found in the original string, so no replacement were done because it is cases case-sensitive operation.
Example 5: Performing multiple replacement operations on the String (Replacement’s Chain) using the Replace() method.
C#
// Perfroming Multiple Replacements
// at the same time
using System;
class Geeks
{
static void Main(string[] args)
{
string s = "Hello, World! Welcome to the World of C#!";
string res = s.Replace("World", "Geeks").Replace("C#", "C Sharp");
Console.WriteLine("Modified String: " + res);
}
}
OutputModified String: Hello, Geeks! Welcome to the Geeks of C Sharp!
Explanation: In the above example, the multiple replacement operation is performed using the Replace() method of string class the world "World" with "Geeks" and "C#" with "C Sharp" using method chaining.
Similar Reads
Java String replaceAll() Method
String replaceAll method in Java searches for a specified string or regex pattern and returns a new string with the matched characters replaced.Example 1:Javaclass Geeks { public static void main(String args[]) { String str = new String("Welcome to geeksforgeeks"); // Using replaceAll to replace reg
2 min read
C# String Remove() Method
In C#, the Remove() method of the String class is used for removing the characters from the specified position of a string. If the length is not specified, then it will remove all the characters after the specified position. This method can be overloaded by changing the number of arguments passed to
3 min read
C# String Trim() Method
C# Trim() is a string class method. This method is used to remove all leading and trailing white-space characters from the current String object and return a new modified string. This method is beneficial for clearing the unwanted extra spaces from the string.Example 1: Using the Trim() method to re
4 min read
C# String Insert() Method
The Insert() method in C# is a part of the String class. It is used to insert a new string at a specified index position and return a new string with the inserted string value. This method does not make the changes in the original string because strings are immutable in C#. It returns a new modified
3 min read
string erase in C++
The string erase() function is a built-in function of the string class that is used to erase the whole or part of the string, shortening its length. The function provides different ways to delete a portion of a string based on either an index position or a range of characters or delete the whole str
4 min read
Java String trim() Method
The trim() method of the String class in Java is used to remove leading and trailing whitespace from a string. The Unicode value of the space character is "\u0020". It does not remove any whitespace in the middle of the string. This method returns a new string with the whitespace removed and leaves
4 min read
PHP substr_replace() Function
The substr_replace() function is a built-in function in PHP and is used to replace a part of a string with another string. The index in the original string from which the replacement is to be performed needs to be passed as a parameter. If desired, the length up to which the replacement is to be don
3 min read
C# | TrimStart() and TrimEnd() Method
Prerequisite: Trim() Method in C# In C#, TrimStart() & TrimEnd() are the string methods. TrimStart() method is used to remove the occurrences of a set of characters specified in an array from the starting of the current String object. TrimEnd() method is used to remove the occurrences of a set o
3 min read
File.Replace(String, String, String) Method in C# with Examples
File.Replace(String, String, String) is an inbuilt File class method that is used to replace the contents of a specified destination file with the contents of a source file then it deletes the source file and creates a backup of the replaced file.Syntax:Â Â public static void Replace (string sourceFi
3 min read
std::string::insert() in C++
In C++, the string::insert() function is used insert the characters or a string at the given position of the string. It is the member function of std::string class.The string::insert method can be used in the following ways to:Table of ContentInsert a Single CharacterInsert a Single Character Multip
4 min read