作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前想在一行中完成这一切:
String output = Pattern.compile("(\\r|\\n|\\t)").matcher(obj).replaceAll("");
Pattern.compile("[^\\p{Print}]").matcher(output).replaceAll(replacement);
但我无法执行以下操作:
Pattern.compile("(\\r|\\n|\\t)").matcher(obj).replaceAll("").Pattern.compile("[^\\p{Print}]").matcher(output).replaceAll(replacement);
如何才能同时编译第二个正则表达式?
最佳答案
如果“效率”对您来说意味着“更少的打字”,那么 String.replaceAll("regex", "replacement") 方法可能适合您:
String output = obj.replaceAll("(\\r|\\n|\\t)", "").replaceAll("[^\\p{Print}]", replacement);
您失去了保留模式以供重用的能力,如果您必须多次使用它,这实际上会更有效。
关于java - 如何更有效地对单个字符串调用replaceAll两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28903377/
我是一名优秀的程序员,十分优秀!