unity string find repalce code example
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
}