Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「DEF」で始まらない単語に一致する正規表現があります。
ここで、次の 3 つのケースに変更したいと思います。
文字列パターンは何を変更すればよいですか?
Regex pattern Match word which does NOT start with word "DEF": ^(?!DEF).*$ match word : ADEFCCC Does Not Match : DEFXXX