你可以使用此函数来解析字符串以查找特定的部分,然后可以用指定的新字符串替换该部分。
string_replace(str, substr, newstr);
参数 描述 str 要复制的字符串。 substr 要替换的字符串中的子字符串。 newstr 替换前一个子字符串的新子字符串。
String(字符串)
str1 = "Hello Earth";
str2 = string_replace(str1, "Earth", "World");
这将设置 str2 为 str1,但将其实例 “Earth” 替换为 “World”,导致 str2 为 “Hello World”。