This documentation is archived and is not being maintained.
String::Replace Method (Char, Char)
Visual Studio 2010
Returns a new string in which all occurrences of a specified Unicode character in this instance are replaced with another specified Unicode character.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- oldChar
- Type: System::Char
The Unicode character to be replaced.
- newChar
- Type: System::Char
The Unicode character to replace all occurrences of oldChar.
Return Value
Type: System::StringA string that is equivalent to this instance except that all instances of oldChar are replaced with newChar.
The following example creates a comma separated value list by substituting commas for the blanks between a series of numbers.
using namespace System; int main() { String^ str = "1 2 3 4 5 6 7 8 9"; Console::WriteLine( "Original string: \"{0}\"", str ); Console::WriteLine( "CSV string: \"{0}\"", str->Replace( ' ', ',' ) ); } // // This example produces the following output: // Original string: "1 2 3 4 5 6 7 8 9" // CSV string: "1,2,3,4,5,6,7,8,9" //
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
Note