我想用逗號檢查我輸入的字符串,這很簡單(只是使用這個:How can I check if a single character appears in a string?)。現在我想檢查一個角色是否存在多次。 (在這種情況下一個逗號(/ u002C))我創造了這個代碼: public static void addTextLimiterDouble(final TextField tf, fina
每 this CodingBat problem 正如我試圖做到以下幾點: 給定一個字符串,如果第一個或最後一個字符是「X」,返回字符串沒有這些「X」字符,否則返回字符串不變。 我的代碼: public String withoutX(String str) {
if (str.startsWith("x")) {
str = str.replace(str.substrin