Develop
2017.12.14 16:10
[js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)
조회 수 3554 댓글 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
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
1033 | Develop |
[c#] 비동기 통신 샘플 코드 ㅎㅎ
![]() |
hooni | 2013.04.23 | 24519 |
1032 | PPT |
[ppt] 뚜레쥬르 온라인 마케팅 제안서
![]() |
hooni | 2013.04.23 | 24458 |
1031 | Develop |
밸런싱 로봇.. 최종.. (관련 논문도 첨부) ㅋㅋ
![]() |
hooni | 2013.04.23 | 24160 |
1030 | Develop |
[js] 자바스크립트(Javascript) 코드를 동적으로 삽입하는 방법..
![]() |
hooni | 2013.04.23 | 24079 |
1029 | Etc | 양성/음성 오류에 대한 개념 | hooni | 2013.04.23 | 23865 |
1028 | Develop | [ios] UILabel top alignㅎㅎ | hooni | 2013.04.23 | 23856 |
1027 | Develop | [ios] UIColor 지정에서 RGB define ㅎㅎ | hooni | 2013.04.23 | 23821 |
1026 | Etc | 영어공부에 도움될만한 사이트 모음 | hooni | 2013.05.14 | 23718 |
1025 | System/OS | [mac] 맥(OSX)에서 root 패스워드 설정하기 | hooni | 2013.04.23 | 23592 |
1024 | Develop | [ios] UIView에서 상위 UIViewController 가져오기 | hooni | 2013.09.27 | 23464 |
1023 | System/OS |
컴파일러 수업 자료(교재 : 컴파일러 입문)
![]() |
hooni | 2003.04.23 | 23443 |
1022 | Develop | [iphone] 화면 전환 Portrait & Landscape Mode | hooni | 2013.04.23 | 23402 |