0和正整数的正则表达式

 

java代码:

public class Test {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		String regEx = "^([1-9]+\\d*)|[0]";
		if(!StringUtil.matchRegEx(regEx, "1000")){
			System.out.println("参数错误:排序号必须为数字");
		}else{
			System.out.println("ok");
		}
	}

}

 

你可能感兴趣的:(正则表达式)