Skip to content
idea插件开发文档
首页
idea插件开发文档
脚本
windows脚本
linux脚本
微信小游戏
Java替换字符串String中的多个空格为一个空格
走着路睡觉
java
小于 1 分钟
// 将" hello there " 替换为 "hello there"
String
after
=
before
.
trim
(
)
.
replaceAll
(
" +"
,
" "
)
;
Loading...