Replace string
using System;
class MainClass {
public static void Main() {
string str = "This test";
Console.WriteLine("Original string: " + str);
// Replace string
str = str.Replace("is", "was");
Console.WriteLine(str);
}
}
Output Original string: This test
Thwas test
|
HTML code for linking to this page:
Related in same category :
-
-
|