4 回答
TA贡献1815条经验 获得超13个赞
replacepublic Stringreplace(char oldChar,
char newChar)返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。
如果 oldChar 在此 String 对象表示的字符序列中没有出现,则返回对此
String 对象的引用。否则,创建一个新的 String 对象,它所表示的字符序列除了所有的
oldChar 都被替换为 newChar 之外,与此 String
对象表示的字符序列相同。
示例:
"mesquite in your cellar".replace('e', 'o')
returns "mosquito in your collar"
"the war of baronets".replace('r', 'y')
returns "the way of bayonets"
"sparring with a purple porpoise".replace('p', 't')
returns "starring with a turtle tortoise"
"JonL".replace('q', 'x') returns "JonL" (no change)
参数:oldChar - 原字符。
newChar - 新字符。
返回:一个从此字符串派生的字符串,它将此字符串中的所有 oldChar 替代为 newChar。
上面是API中给予的解释,在java.lang.String类里。其实就是一个字符串替换函数,使用例子如下:"aabbccaa".replace("aa", "dd");那么结果应该会是ddbbccdd这样。
TA贡献1860条经验 获得超8个赞
String s="123456(sss)";
String substring = s.substring(s.indexOf("("), s.indexOf(")")+1);
//replace(替换前内容,要替换的内容);
//我这里给一个空
String replace = s.replace(substring, "");
System.out.println(replace);
//输出的是:123456
TA贡献1856条经验 获得超17个赞
replace(要替换的目标,替换后新值);
如:
var obj="weclome to my blog!";
var newobj=obj.replace("my","our");
alert(newobj);
输出的值为:weclome to our blog!
添加回答
举报