public class Example
{
public static void Main()
{
string orgin = "CodeKiller is Korean and male.";
var replace = orgin.Replace("male", "female");
Console.WriteLine($"The source string is <{orgin}>");
Console.WriteLine($"The replace string is <{replace}>");
}
}