윈도우, 컴퓨터

VSC 정규 표현식, 정규식, regex, regular expression

pepega 2021. 11. 2. 16:37

IDE : VSC

 

 

자주 사용하는 것들을 적었습니다.

 

^.*(word1|word2|word3).*\n

//원하는 단어가 포함된 줄 찾기
RES\r?\nREQ

// RES가 줄의 마지막 문자열
// REQ가 다음 줄 첫 번째 문자열인 경우

 

 

출처 및 자세한 내용은

https://docs.microsoft.com/ko-kr/visualstudio/ide/using-regular-expressions-in-visual-studio?view=vs-2019 

 

정규식 사용 - Visual Studio (Windows)

Visual Studio에서 사용할 수 있는 몇 가지 정규식 문자, 연산자, 구문 및 패턴 예제에 대해 알아봅니다.

docs.microsoft.com

https://stackoverflow.com/questions/51287097/how-do-you-delete-lines-with-certain-keywords-in-vscode/51287710

 

How do you delete lines with certain keywords in VScode

I have this regular expression to find certain keywords on a line: .*(word1|word2|word3).* In the find and replace feature of the latest VSCode it works ok and finds the words but it just blanks ...

stackoverflow.com