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
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
747 | Develop |
[c#] 전자금융보안론 발표/설치 자료(툴바 소스코드)
![]() |
hooni | 2016.05.07 | 0 |
746 | Develop |
XE Core 1.8.18 본문 작성시 태그(html) 사라지는 버그
![]() |
hooni | 2016.04.21 | 2102 |
745 | Develop | [io] Apple Watch, Today Extension 앱ID 설정 | hooni | 2016.04.20 | 4163 |
744 | Develop | [ios] Did UIScrollView End Scrolling? | hooni | 2016.04.19 | 8335 |
743 | Develop |
[ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift)
![]() |
hooni | 2016.03.23 | 11606 |
742 | Develop |
[ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C)
![]() |
hooni | 2016.03.23 | 4246 |
741 | Develop |
[js] AngularJS 란?
![]() |
hooni | 2015.11.26 | 2177 |
740 | Develop | [php] 한글 문자열 자르기 (utf-8) | hooni | 2015.11.10 | 2776 |
739 | Develop | [c] 한글 문자열 출력 | hooni | 2015.11.10 | 3128 |
738 | Develop | [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기 | hooni | 2015.10.23 | 4688 |
737 | Develop | [ios] ViewController Push할 때 애니메이션 효과 | hooni | 2015.10.23 | 2112 |
736 | Develop | [linux] CentOS Apache 웹서버에 HTTPS 적용 | hooni | 2015.10.23 | 2082 |