Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 179 Bytes

string.md

File metadata and controls

9 lines (7 loc) · 179 Bytes

정규식 문자열 취급

function escapeRegExp(string){
  return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")
}
  • $&는 일치한 전체 문자열을 의미함