Develop
2017.12.14 16:10
[js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)
조회 수 3497 댓글 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
-
Aspect Oriented Programming in Objective-C
-
[ios] 배경에 Gradient 적용하기 (CAGradientLayer)
-
[c#] 툴바 소스.. 개인적으로 만드는거..
-
[ios] APNS, Remote Push 사용자가 수신을 동의했는지 확인하기
-
[ios] GMT Date와 Local Date 변환하기
-
[ios] 카테고리 확장 메소드를 찾지 못하는 경우
-
[js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)
-
[ios] Objective-C 에서 자주 사용하는 수학 함수와 유용한 Define
-
[java] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 #2 (client)
-
[android] SQLiteOpenHelper를 이용한 DBManager
-
[ios] 설정에서 푸시 알림(APNS) on/off 상태 확인
-
[ubuntu] 우분투 18.04에 PHP5 설치하기