Develop
2017.12.14 16:10
[js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)
조회 수 3995 댓글 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 valueIf the original string may have no digits at all, you'll get the numeric non-value NaN from parseIntin that case, which may be as good as anything.
[출처] https://stackoverflow.com/questions/4460595/jquery-filter-numbers-of-a-string
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|---|
| 9 | Algorithm |
OCB5 Injection 앗싸뵹! ㅋㅋ
|
hooni | 2014.07.01 | 2640 |
| 8 | Algorithm | 러시아 페인트공 알고리즘에 대해.. | hooni | 2013.04.23 | 24780 |
| 7 | Algorithm | 디피헬만(Diffie-Hellman) 초간단 개념.. | hooni | 2013.04.23 | 85926 |
| 6 | Algorithm |
암호 알고리즘 및 프로토콜의 이해..
|
hooni | 2013.04.23 | 21556 |
| 5 | Algorithm | Polynomial time 이란? ㅋㅋ | hooni | 2013.04.23 | 24870 |
| 4 | Algorithm | [security] 블럭 암호에 대해서.. | hooni | 2013.04.23 | 18584 |
| 3 | Algorithm |
스터디 자료, 암호화에 대해서.. 나중에 볼 ppt..
|
hooni | 2013.04.23 | 15041 |
| 2 | Algorithm | [security] RSA 암호화 설명과 예.. | hooni | 2013.04.23 | 18233 |
| 1 | Algorithm | [algorithm] Greedy (탐욕 기법) | hooni | 2003.04.23 | 16933 |