특정 단어 제외
/^((?!three|one).)*$/gm경계 지정
- 
\b메타 문자는 경계 위치를 가르킨다(boundary)
Examples
Raindrops on roses, and whiskers on kittens.- 
위 문자를 \b로 평가할 때 아래와 같음 (|로 경계를 나타냄)|Raindrops| |on| |roses|, |and| |whiskers| |on| |kittens|.
- 
\bo.\b로 매치했을 때 bold 처리된 텍스트가 매칭된 결과|Raindrops| |on| |roses|, |and| |whiskers| |on| |kittens|. 
- 
\B는\b와 반대.