Obsidian/Recognition/Programing/정규표현식/특정문자제외한 나머지.md

10 lines
119 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

#정규식
```
표현식)
 ^((?!(?=.*단어)(?=.*단어)).)*$
ex)
^((?!(?=.*[Send Packet])(?=.*null\$)).)*$
```