Views 3459 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
985 Develop [php][laravel] 라라벨 프로젝트 생성 및 구조 file hooni 2017.12.15 4598
984 Develop [php][laravel] 라라벨 개발환경 세팅하기 (Mac, Window) 2 file hooni 2017.12.15 5546
983 Develop [php] 현재에서 일정한 날짜 더하기.. hooni 2013.04.23 8451
982 Develop [php] 한샘 전자발주 시스템.. file hooni 2013.04.23 12983
981 Develop [php] 한글 문자열 자르기 (utf-8) hooni 2015.11.10 2774
980 Develop [php] 하루 전 날짜 쉽게 구하기. hooni 2013.12.25 13592
979 Develop [php] 피코맥스용 검색엔진 ㅋㅋ file hooni 2013.04.23 8241
978 PPT [php] 프레임워크 발표자료 및 샘플 구현 소스 file hooni 2013.04.23 18431
977 Develop [php] 탐색기와 같은 다이나믹 트리(xml/xsl 이용) file hooni 2013.04.23 8072
976 Develop [php] 초간단 웹 카운터.. file hooni 2003.04.23 8127
975 Develop [php] 초간단 게시판 페이지 분할 알고리즘 hooni 2003.04.23 10116
974 Develop [php] 정규표현식 간단히 정리 hooni 2013.04.23 7818
973 Develop [php] 자주 쓰는 PHP 함수와 예제 hooni 2013.04.23 10986
972 Develop [php] 자바스크립트 개판 만들기.. file hooni 2013.04.23 8528
971 Develop [php] 이미지 회전시키기(gd) hooni 2013.04.23 8216
970 Develop [php] 웹 터미널 & 업로드 소스.. file hooni 2013.04.23 8230
Board Pagination Prev 1 ... 11 12 13 14 15 ... 74 Next
/ 74