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

10 lines
119 B
Markdown
Raw Permalink Normal View History

2023-08-14 16:19:25 +00:00
#정규식
```
표현식)
 ^((?!(?=.*단어)(?=.*단어)).)*$
ex)
^((?!(?=.*[Send Packet])(?=.*null\$)).)*$
```