Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- web.xml
- 단축키
- lsof
- Windows
- context
- ssh
- Mac
- tomcat
- xargs
- 네트워크
- resource
- Quartz
- maVen
- Source
- port
- VirtualBox
- import
- vscode
- grep
- Windows 10
- JavaScript
- GIT
- bash
- netsh
- profile
- plugin
- Eclipse
- 줄바꿈 문자
- IntelliJ
- find
Archives
- Today
- Total
develog
[vscode] 정규식 검색 ?<! 본문
// FIND_TXT2 가 있는 모든 라인 중 FIND_TXT1 가 포함된 라인은 제외한다
// (?<!FIND_TXT1)(FIND_TXT2)
// [findOne][1234] 은 제외
// [aa][1234] 은 포함
// [bb][1234] 은 포함
(?<!\[findOne\])(\[1234\])
Comments