1. 程式人生 > >java 驗證字串是否滿足某種格式

java 驗證字串是否滿足某種格式

 /**
 * 判斷字串滿足指定格式 true 合法
 */	
public static boolean checkValidity (String str, String regex) {
		Pattern p = Pattern.compile(regex);
		Matcher m = p.matcher(str);
		if (m.matches()) {
			return true;
		} else {
			return false;
		}
	}