unity replace a text in a string

Code Example - unity replace a text in a string

                
                        public string strOne = "Hello World";
public string strTwo = "World";

public void ReplaceStrTwoFromStrOne()
{
	strOne = strOne.Replace(strTwo, "everyone"); //strOne = "Hello everyone" now
}