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 | 29 | 30 |
Tags
- VirtualBox
- context
- JavaScript
- IntelliJ
- Windows
- Windows 10
- ssh
- vscode
- maVen
- Quartz
- bash
- import
- GIT
- 줄바꿈 문자
- 단축키
- port
- Source
- web.xml
- Eclipse
- lsof
- netsh
- find
- resource
- profile
- tomcat
- plugin
- 네트워크
- grep
- xargs
- Mac
Archives
- Today
- Total
develog
[vscode] 정규식 검색 ?<! 본문
// FIND_TXT2 가 있는 모든 라인 중 FIND_TXT1 가 포함된 라인은 제외한다
// (?<!FIND_TXT1)(FIND_TXT2)
// [findOne][1234] 은 제외
// [aa][1234] 은 포함
// [bb][1234] 은 포함
(?<!\[findOne\])(\[1234\])
Comments