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 | 31 |
Tags
- find
- port
- Quartz
- context
- netsh
- Source
- maVen
- 단축키
- bash
- ssh
- GIT
- VirtualBox
- xargs
- JavaScript
- resource
- IntelliJ
- Windows
- web.xml
- Mac
- tomcat
- Eclipse
- 네트워크
- vscode
- 줄바꿈 문자
- grep
- lsof
- profile
- Windows 10
- import
- plugin
Archives
- Today
- Total
develog
[vscode] 정규식으로 개행 문자 포함해서 찾기 본문
개행 문자 포함해서 검색할 때
[\s\S\r\n]*?
ex) HMTL 주석 태그 찾기
# <!-- 와 --> 사이의 모든 텍스트를 찾는다
<!--[\s\S\r\n]*?-->
ex2)
// 찾기
return api_response\(([\s\S\r\n]*?)\);
// 바꾸기, 그룹 치환은 $1
return encrypt(api_response($1));
Comments