Java使用正規表示式判斷字串中是否包含某子字串

indexman發表於2017-12-14

需求:

給定一個字串s,判斷當s中包含“tree fiddy"或“3.50”或“three thirty”子字串返回true,否則返回false.

題目來自程式碼勇士。


import java.util.regex.Pattern;

/**
 * 判斷字串中是否包含某字串
 *
 * @author dylan
 * @create 2017-12-14
 **/
public class Nessie {
    public static boolean isLockNessMonster(String s) {
        return Pattern.matches(".*(tree fiddy|3\\.50|three fifty).*", s);
    }

    public static void main(String[] args) {
        System.out.println(isLockNessMonster("tree fiddy123"));
    }
}

輸出:

true

相關文章