使用正则表达式,效率较高
1
2
3
4
5
6
7
8
9
|
public boolean canparseint(string str){ if (str == null ){ //验证是否为空 return false ; } return str.matches( "\\d+" ); //使用正则表达式判断该字符串是否为数字,第一个\是转义符,\d+表示匹配1个或 //多个连续数字,"+"和"*"类似,"*"表示0个或多个 } |
以上这篇java判断string类型是否能转换为int的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/wtfubar/article/details/70628139