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
- Mac
- tomcat
- context
- Windows
- maVen
- IntelliJ
- import
- Quartz
- Eclipse
- JavaScript
- GIT
- Source
- Windows 10
- 단축키
- plugin
- ssh
- xargs
- port
- resource
- VirtualBox
- web.xml
- find
- profile
- 네트워크
- lsof
- netsh
- vscode
- grep
- 줄바꿈 문자
- bash
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