조회 수 3536 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

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
번호 분류 제목 글쓴이 날짜 조회 수
1001 Develop [php] substr() 한글 자를 때 깨짐 방지 hooni 2014.01.09 21534
1000 Etc [세미나] XML 레포트.. hooni 2003.04.23 21474
999 Develop [python] 애니팡, 캔디팡 매크로 file hooni 2013.09.06 21442
998 Develop [ios] libxml/tree.h file not found file hooni 2013.08.08 21285
997 Develop [c] UTF-8을 EUC-KR로 변환.. (iconv) file hooni 2013.04.23 21280
996 Develop [php] XE 에서 php 구문 사용하기 (XE 템플릿에서) hooni 2013.10.31 21133
995 Develop [js]모바일 웹에서 orientationchange hooni 2013.04.23 20855
994 Develop [c] AES 알고리즘 (암호화/복호화) file hooni 2003.04.23 20840
993 System/OS [mysql] MySQL server has gone away 에러 대응 hooni 2013.05.29 20758
992 System/OS [windows] 여러가지 활용 팁 hooni 2003.04.23 20739
991 System/OS [linux] 리눅스,유닉스 /proc/stat 파일 보는 법 hooni 2013.04.23 20710
990 Etc 정보시스템(정보보안)의 위험관리 설명 hooni 2013.04.23 20577
989 System/OS [mac] 컨텍스트(Context) 메뉴 "다음으로 열기" 내용 정리 hooni 2013.07.10 20365
988 Develop [ios] iphone SetDeviceOrientation 화면 강제 회전 hooni 2013.11.20 20239
987 System/OS 나중에 해봐야지.. libconv 설치.. ㅡ,.ㅡ; hooni 2013.04.23 20224
986 Develop [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드 hooni 2013.04.23 20152
Board Pagination Prev 1 ... 10 11 12 13 14 ... 74 Next
/ 74