Views 1102 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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 parseIntin that case, which may be as good as anything.

[출처] https://stackoverflow.com/questions/4460595/jquery-filter-numbers-of-a-string

?

List of Articles
No. Category Subject Author Date Views
565 Develop [ios] 유용한 매크로 hooni 2014.03.26 3654
564 [ios] 인앱결제 & 오토레이아웃 관련 강좌 secret hooni 2013.11.14 0
563 Develop [ios] 자주 쓰는 패턴과 API hooni 2013.04.23 17690
562 Develop [ios] 참고할만한 좋은 예제 소스.. hooni 2013.04.23 27371
561 Develop [ios] 최상위 ViewController 가져오기 hooni 2015.10.12 1059
560 Develop [ios] 최신 UI 모음.. (나중에 정리할 것) secret hooni 2013.08.09 0
559 Develop [ios] 카메라 사용 권한 확인해서 분기하는 방법 hooni 2015.02.26 1869
558 Develop [ios] 카테고리 확장 메소드를 찾지 못하는 경우 file hooni 2014.08.08 1993
557 Develop [ios] 커스텀 폰트 사용하기 (Custom Fonts) file hooni 2014.04.30 3133
556 Develop [ios] 코코아 프레임워크(Cocoa Framework) 기본적인 내용~ hooni 2013.04.23 27682
555 Develop [ios] 코코아 프로그래밍의 네이밍 룰(명명 규칙) hooni 2017.05.11 1179
554 Develop [ios] 테이블뷰셀/뷰에 배경 패턴 넣기.. hooni 2013.04.23 29813
553 Develop [ios] 패스(path) 앱 메뉴 스타일 secret hooni 2013.06.11 0
552 Develop [ios] 푸시알림(APNS)에 대한 php 라이브러리 ㅋㅋ hooni 2013.04.23 16632
551 Develop [ios] 한샘 카달로그 앱 소스 (아이폰용) secret hooni 2013.04.23 10922
550 Develop [ios][swift] 초간단 TableView 샘플 file hooni 2016.06.27 734
Board Pagination Prev 1 ... 37 38 39 40 41 ... 74 Next
/ 74