Develop
2017.12.14 16:10
[js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)
조회 수 3458 댓글 0
How to Filter Numbers Of A String
Not really jQuery at all:
number = number.replace(/\D/g, '');
That regular expression, /\D/g
, matches any non-digit. Thus the call to .replace()
replaces all non-digits (all of them, thanks to "g") with the empty string.
edit — if you want an actual *number value, you can use parseInt()
after removing the non-digits from the string:
var number = "number32"; // a string
number = number.replace(/\D/g, ''); // a string of only digits, or the empty string
number = parseInt(number, 10); // now it's a numeric value
If the original string may have no digits at all, you'll get the numeric non-value NaN
from parseInt
in that case, which may be as good as anything.
[출처] https://stackoverflow.com/questions/4460595/jquery-filter-numbers-of-a-string
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
1177 |
[ios] 인앱결제 & 오토레이아웃 관련 강좌
![]() |
hooni | 2013.11.14 | 0 | |
1176 | PPT |
네오웹 세미나 자료~
![]() |
hooni | 2013.05.28 | 0 |
1175 | Develop |
[iphone] PerfectlyClear 보정솔루션 최신..
![]() |
hooni | 2013.05.28 | 0 |
1174 | PPT |
[doc] BHO관련 발표 자료(디펜스에 쓸꺼)
![]() |
hooni | 2013.05.28 | 0 |
1173 | Develop |
[ios] IB 없이 개발하기 (html)
![]() |
hooni | 2013.05.31 | 0 |
1172 | Develop |
[ios] 스터디 자료 (from 종길M)
![]() |
hooni | 2013.06.04 | 0 |
1171 | Develop |
[ios] 패스(path) 앱 메뉴 스타일
![]() |
hooni | 2013.06.11 | 0 |
1170 | Etc |
영어 아주 쉬운 영작문 강의 01~60
![]() |
hooni | 2013.06.25 | 0 |
1169 | Etc |
영어 관련 토렌트
![]() |
hooni | 2013.06.25 | 0 |
1168 | Develop |
이어서 작업할 내용~
![]() |
hooni | 2013.11.21 | 0 |
1167 | Develop |
[ios] APNS 샘플 코드..
![]() |
hooni | 2013.06.27 | 0 |
1166 | Develop |
[ios] 최신 UI 모음.. (나중에 정리할 것)
![]() |
hooni | 2013.08.09 | 0 |