为了账号安全,请及时绑定邮箱和手机立即绑定

请教下,关于在java中replace方法如何使用?

请教下,关于在java中replace方法如何使用?

陪伴而非守候 2021-06-29 11:07:36
希望有具体的例子
查看完整描述

2 回答

?
人到中年有点甜

TA贡献1895条经验 获得超7个赞

public String replace(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。



查看完整回答
反对 回复 2021-07-05
?
一只名叫tom的猫

TA贡献1906条经验 获得超3个赞

class metho {
public metho() {
}

public static void main(String[] args) {
String firstString = "This is";
String secondString = "Thisis";
if (firstString.equals(secondString)) {
System.out.println("相等");}
else{
System.out.println("不相等");
}
System.out.println(firstString.concat(" hisfather"));
System.out.println(firstString.replace(firstString.lastIndexOf('i'),'z' ));
}
}



查看完整回答
反对 回复 2021-07-05
  • 2 回答
  • 0 关注
  • 216 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信