stringutils替换
时间: 2023-07-06 16:30:41 浏览: 140
字符串替换
好的,您想了解 stringutils 的替换功能。StringUtils 是一个 Apache Commons Lang 库中的一个工具类,它提供了很多字符串处理的方法。其中替换功能可以通过 `StringUtils.replace` 方法实现。该方法有三个参数:原始字符串、需要被替换的字符串、替换成的字符串。例如,以下代码将字符串中所有的空格替换成逗号:
```
String str = "Hello world! This is a test string.";
String replacedStr = StringUtils.replace(str, " ", ",");
System.out.println(replacedStr);
```
输出结果为:
```
Hello,world!,This,is,a,test,string.
```
阅读全文