StringUtils.isBlank 与正则表达式
因此,我正在查看一些遗留代码并找到他们执行此操作的实例:
if ((name == null) || (name.matches("\\s*")))
.. do something
暂时忽略 .matches(..)
调用每次都会创建一个新的模式和匹配器(uhg) - 但是否存在有任何理由不将此行更改为:
if (StringUtils.isBlank(name))
..do something
我很确定如果字符串全部是空格,则正则表达式会简单匹配。 StringUtils 会捕获与第一个相同的所有条件吗?
So I am looking through some legacy code and finding instance where they do this:
if ((name == null) || (name.matches("\\s*")))
.. do something
Ignore for the moment that the .matches(..)
call creates a new Pattern and Matcher everytime (uhg) - but is there any reason not to change this line to:
if (StringUtils.isBlank(name))
..do something
I'm pretty sure the regex simply matches if the string is all whitespace. Will StringUtils catch all the same conditions as the first one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,
StringUtils.isBlank(..)
会做同样的事情,并且是更好的方法。看一下代码:Yes,
StringUtils.isBlank(..)
will do the same thing, and is a better way to go. Take a look at the code:如果字符串包含零个或多个空白字符,则正则表达式测试是正确的。
不使用正则表达式的优点
.matches()
具有不小的开销You are correct the regular expression test's if the string is more zero or more white space characters.
The advantages of not using the regular expression
.matches()
has a non trivial overhead