Develop
2017.12.14 16:10
[js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)
Views 3437 Comment 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
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
51 | Develop |
[vb] 64bit RSA 프로그램 소스 ㅋㅋ
![]() |
hooni | 2013.04.23 | 9200 |
50 | Develop |
[vb] 문자열에서 태그 제거함수 (Visual Basic)
![]() |
hooni | 2013.04.23 | 25597 |
49 | Develop | [vb] 비주얼 베이직 131페이지 | hooni | 2003.04.23 | 65225 |
48 | Develop | [vb] 비주얼 베이직 141페이지 | hooni | 2003.04.23 | 65835 |
47 | Develop | [vb] 비주얼 베이직 173페이지 | hooni | 2003.04.23 | 62142 |
46 | Develop | [vb] 비주얼 베이직 205페이지 | hooni | 2003.04.23 | 63359 |
45 | Develop | [vb] 비주얼 베이직 순위 정렬 루틴 | hooni | 2003.04.23 | 66294 |
44 | Develop | [vb] 비주얼 베이직 자격증용 ㅎㅎ | hooni | 2003.04.23 | 68518 |
43 | Develop | [vb] 비쥬얼 베이직 기출 문제 연습 | hooni | 2003.04.23 | 62013 |
42 | Develop | [vb] 비쥬얼 베이직 기출 문제 연습2 | hooni | 2003.04.23 | 61370 |
41 | Develop | [vb] 비쥬얼 베이직으로.. | hooni | 2003.04.23 | 60514 |
40 | Develop |
[vc++] 게임 소스 등.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 19103 |