gpt4 book ai didi

java - 替换任意长度的子串

转载 作者:行者123 更新时间:2023-12-02 12:14:20 25 4
gpt4 key购买 nike

我需要替换任意长度的子字符串。例如两个空格之间。

示例

String str = "Insert random message here";
// Manipulation
System.out.println(str);

// Outputs: Insert a message here

我在 String 类中搜索了一种方法,但没有找到有用的方法。 (可能是因为我英语不好……)

最佳答案

System.out.println给我一种感觉,这就是Java。您可以使用对象的replaceAll函数将字符串 block /匹配正则表达式替换为另一个给定的字符串。

String str = "I am foo";
str.replaceAll("foo", "blah");
System.out.println(str);

上面的代码应该打印“I am blah”。

关于java - 替换任意长度的子串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46306067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com