正则表达式-验证数字

		//+表示一位或者多位
		//*表示0位或者多位
		
		//“”空字符串肯定不包含一位或者多位数字所以返回false
		System.out.println("".matches("\\d+"));//false
		//*表示允许出现0位数字的情况,所以这里为true
		System.out.println("".matches("\\d*"));//true
		
		//“ ”表示含有一个空格,不满足必须是一位以上数字的情况
		System.out.println(" ".matches("\\d+"));//false
        		//“ ”表示含有一个空格,不满足必须是0位或者是一位以上数字的情况
		System.out.println(" ".matches("\\d*"));//false
		
		//符合条件
		System.out.println("213".matches("\\d+"));//true
		//符合条件
		System.out.println("213".matches("\\d*"));//true
		
		//只能是含有数字
		System.out.println(" 213".matches("\\d+"));//false
		//只能是含有数字
		System.out.println(" 213".matches("\\d*"));//false
		
		//只能是含有数字
		System.out.println("213 ".matches("\\d+"));//false
		//只能是含有数字
		System.out.println("213 ".matches("\\d*"));//false
		
		
		//只能是含有数字
		System.out.println("213_".matches("\\d+"));//false
		//只能是含有数字
		System.out.println("213_".matches("\\d*"));//false
		
		//只能是含有数字
		System.out.println("213a".matches("\\d+"));//true
		//只能是含有数字
		System.out.println("213a".matches("\\d*"));//true
		
		//最后选择
		System.out.println("3334242".matches("\\d+"));

  

    学习过程中随手写的一些测试的代码,记录下来做为学习过程的记录以备日后查看

    也希望能给别人些许的帮助

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