如何在 Java Regex 中匹配不包含某個單詞的行
範例
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class NoRegTest {
public static void main(String[] args) {
String s="^fun";
Pattern pattern = Pattern.compile(s);
Matcher matcher = pattern.matcher("Java is fun");
if(!matcher.find()) {
System.out.println("not found");
}
}
}輸出
not found
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP