Java 判斷檔名字串只有英文 / 數字, 而無中文字

要判斷檔名字串中, 只有英文 / 數字, 而無其他的字元,

可以利用下面的語法 :
程式碼
if( str.matches("[a-zA-Z0-9|\\.]*") )
{
true 的處理 … // 只有英文數字的處理
}
else
{
flase 的處理 … // 有其他自元的處理
}
Related Posts Plugin for WordPress, Blogger...