Develop
2017.12.14 16:10
[js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)
조회 수 3546 댓글 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
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
279 | Develop | [c++] 인라인 함수에 대한 설명 | hooni | 2013.04.23 | 8141 |
278 | Develop |
[c] 컴파일러 선행처리기 따라하기..
![]() |
hooni | 2003.04.23 | 8129 |
277 | Develop |
[php] 초간단 웹 카운터..
![]() |
hooni | 2003.04.23 | 8129 |
276 | Develop |
[pdf] C++ 국제 표준 문서
![]() |
hooni | 2013.04.23 | 8127 |
275 | Develop |
[c] 문자열 컨트롤 함수로 만든 프로그램들..
![]() |
hooni | 2003.04.23 | 8118 |
274 | Develop |
[c] 웹 메모장.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 8116 |
273 | Develop |
[c++] 인라인 함수 설명과 예제..
![]() |
hooni | 2013.04.23 | 8097 |
272 | Develop | [c] 파일(int fd)에서 개행문자 단위로 읽기 by 후리자 | hooni | 2013.04.23 | 8088 |
271 | Develop |
[c] 단기과정[01/15] 피보나치, 파스칼.. 링크리스트
![]() |
hooni | 2003.04.23 | 8080 |
270 | Develop |
[php] 탐색기와 같은 다이나믹 트리(xml/xsl 이용)
![]() |
hooni | 2013.04.23 | 8078 |
269 | Develop |
[c] 학교 건물 최단거리 찾는 웹 연동 프로그램
![]() |
hooni | 2013.04.23 | 8075 |
268 | Develop |
[c] pcapdump 파일 분석 하는 프로그램.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 8061 |