java程序题:一个字符串 怎么判断他是四位整数?
发布网友
发布时间:2023-07-22 20:38
我来回答
共1个回答
热心网友
时间:2023-07-26 21:24
public
isInteger4(String
str)
{
String
expression="^[1-9]\d{3}$";
//4位整数的正则表达式
Pattern
pattern
=
Pattern.compile(expression);
return
pattern.matcher(str).matches();
}
如果返回为true,则是,否则不是