Skip to content

Instantly share code, notes, and snippets.

@nupamore
Last active December 13, 2022 07:29
Show Gist options
  • Save nupamore/b2c735df7481b6fd3bc1d839d3d28dc3 to your computer and use it in GitHub Desktop.
Save nupamore/b2c735df7481b6fd3bc1d839d3d28dc3 to your computer and use it in GitHub Desktop.
프로젝트에서 사용된 텍스트 찾기
  1. vscode 새 검색 편집기 열기
  2. 검색 후 컨텍스트 토글
  3. chrome console에서 a로 텍스트 복사
  4. 이름만 중복 제거
Array.from(new Set(a.match(/<Dnx.*?[ >\/\n]/g).map(_ => _.replace(/[ <>\/\n]/g,'').replace('--','')))).sort().join(', ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment