대괄호가 아닌 문자를 찾으려면 다음과 같은 문자를 추가해야 합니다. -
[^...]
예시
대괄호 사이가 아닌 문자를 찾는 방법을 배우기 위해 다음 코드를 실행할 수 있습니다 -
<html> <head> <title>JavaScript Regular Expression</title> </head> <body> <script> var myStr = "Welcome! Welcome to the website!"; var reg = /[^m]/g; var match = myStr.match(reg); document.write(match); </script> </body> </html>