1. 程式人生 > >java中判斷字串是否含有中文、數字、字母

java中判斷字串是否含有中文、數字、字母

java中判斷某一字串是否為純英文、純數字、字串中含有英文和數字,判斷字串是否為純中文,我們通過正則str.matches匹配,告訴這個字串是否與給定的正則表示式匹配。對string .matches(regex)方法的呼叫會產生與表示式完全相同的結果

        /**
	 * 判斷字串是否全為英文
	 * @param str
	 * @return
	 */
	public void isEnglish(String str){
		//【全為英文】返回true  否則false  
		boolean result1 = str.matches("[a-zA-Z]+");
		//【全為數字】返回true
		Boolean result6 = str.matches("[0-9]+");
		//【除英文和數字外無其他字元(只有英文數字的字串)】返回true 否則false
		boolean result2 = str.matches("[a-zA-Z0-9]+");
		//【含有英文】true
		String regex1 = ".*[a-zA-z].*";  
		boolean result3 = str.matches(regex1);
		//【含有數字】true
		String regex2 = ".*[0-9].*";  
		boolean result4 = str.matches(regex2);
		//判斷是否為純中文,不是返回false
		String regex3 = "[\\u4e00-\\u9fa5]+";
		boolean result5 = str.matches(regex3);
		System.out.println(result1+"--"+result2+"--"+result3
				+"--"+result4+"--"+result5+"--"+result6);
	}