정규 표현 식 (숫자 여야 함)

494 단어 정규 표현 식
public boolean isNumeric(String s)
    {
        Pattern pattern = Pattern.compile("[0-9]*");
        Matcher matcher = pattern.matcher(s);
        return matcher.matches();
    } 


function isNumeric(value){
    	var returnValue = true;
		var re =  new RegExp("^([0-9]+)$");
		if(value.search(re) == -1)
		{
	   	returnValue=false;
		}
		return returnValue;
	}

좋은 웹페이지 즐겨찾기