我仍在使用Java開發一個項目,想問問有人能幫助我嗎?Java/startsWith多個字母?
我在問我是否可以檢查一個字符串與多個字母與「startsWith」?
喜歡:
if (string Alpha.startsWith("a"||"A"||"b"||"B"||"c"||"C"||"d"||"D")){
System.out.println("Wrong!");
System.out.println("\n");
}
else{
System.out.println("Wrong Key!");
任何解決方案?
你可以使用正則表達式? – yotommy
嘗試http://regex101.com/ – dinesh707