w3s 썸네일형 리스트형 JavaScript RegExp [^0-9] Expression 특수 문자도 \ 태그를 붙여서 사용할 수 있는듯.. \. 으로 쓰면 . 도 인식할 수 있음. JavaScript RegExp [^0-9] Expression JavaScript RegExp ObjectExampleDo a global search for the numbers that are NOT 1 to 4 in a string:var str = "123456789"; var patt1 = /[^1-4]/g;The marked text below shows where the expression gets a match:123456789 Try it yourself »Definition and UsageThe [^0-9] expression is used to find any digit NOT betwee.. 더보기 이전 1 다음