Develop
2017.12.14 16:10
[js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)
조회 수 3485 댓글 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
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
831 | Develop | OGNL(Object Graph Navigation Language) | hooni | 2013.04.23 | 16956 |
830 | Develop | OpenGL 강좌 사이트 모음 | hooni | 2013.04.23 | 12413 |
829 | Develop |
OPT와 CAS에 대한 자료.. (교수님 메일로 보내드린 자료..)
![]() |
hooni | 2013.04.23 | 15061 |
828 | Develop | SVN 명령어 (SVN command) | hooni | 2014.02.28 | 13033 |
827 | Develop | SVN 초간단 사용하기 | hooni | 2014.02.28 | 9011 |
826 | Develop |
URI 인코딩, URL 인코딩
![]() |
hooni | 2013.04.23 | 19819 |
825 | Develop | What is difference between Get, Post, Put and Delete? | hooni | 2018.02.28 | 5340 |
824 | Develop |
XE Core 1.8.18 본문 작성시 태그(html) 사라지는 버그
![]() |
hooni | 2016.04.21 | 2102 |
823 | Develop |
XML, JSON, BSON, MSGPACK 장,단점 비교
![]() |
hooni | 2017.01.11 | 6206 |
822 | Develop |
ZBar 라이브러리를 이용한 바코드 스캔 앱 개발하기
![]() |
hooni | 2015.01.01 | 2707 |
821 | Develop | [ajax] 샘플 코드와 한글처리에 대한 간단한 설명 | hooni | 2013.04.23 | 7726 |
820 | Develop |
[ajax] 이벤트 코드 생성기 작업중.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 8565 |