//判斷是否是整數
public static boolean isNumeric(String s)
{
if((s != null)&&(s!=""))
return s.matches("^[0-9]*$");
else
return false;
}
//判斷傳遞來的是否是數字
public static int checkID(String s)
{
if((s == null)||(s.length() == 0)||!s.matches("^[0-9]*$"))
{
return 0;
}
else
{
if(s.length() < 10)
{
return Integer.parseInt(s);
}
else
{
return 0;
}
}
}
//判斷傳遞來的是否是字符串
public static String checkString(String s)
{
if((s == null)||(s.length() == 0)||s.matches("^[0-9]*$"))
{
return "";
}
else
{
return s;
}
}
posted on 2006-10-18 13:34
周銳 閱讀(1971)
評論(0) 編輯 收藏 所屬分類:
Java