java 正则匹配到的字符串 前面加个空格
时间: 2023-08-08 21:13:22 浏览: 110
去掉字符串前后所有空格的正则表达式
5星 · 资源好评率100%
你可以使用正则表达式的替换功能,将匹配到的字符串前面加上空格。以下是一个示例代码:
```
String input = "HelloWorld";
String regex = "(World)";
String replacement = " $1"; // 在匹配到的字符串前面加空格
String output = input.replaceAll(regex, replacement);
System.out.println(output); // 输出 "Hello World"
```
在这个例子中,我们使用了正则表达式 `(World)` 匹配到了字符串 "World",然后使用 `$1` 引用这个匹配结果,再在前面加上空格。最后使用 `replaceAll()` 函数替换原始字符串中的匹配结果,得到最终输出 "Hello World"。
阅读全文