发布:2022/4/26 11:20:00作者:管理员 来源:本站 浏览次数:1361
为了显示效果更好,我们可以将多余的字符去掉,代码如下:
- /**
- *去掉字符串前后的指定字符
- */
- public static String trimBothChars(String str, String splitter) {
- String regex = "^" + splitter + "*|" + splitter + "*$";
- return str.replaceAll(regex, "");
- }
效果:
- oldStr:,this is txt,
- newStr:this is txt
© Copyright 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4