조회 수 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
번호 분류 제목 글쓴이 날짜 조회 수
1113 Develop [ios] Xcode의 디버그 모드에서 콜스택 file hooni 2015.01.03 2183
1112 Develop [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기 hooni 2015.02.10 2187
1111 Develop [js] AngularJS 란? file hooni 2015.11.26 2189
1110 Develop [ios] 로컬에 있는 html 실행하기 hooni 2015.02.10 2191
1109 System/OS [svn] Can't convert string from native encoding to 'UTF-8' 메시지가 나오는 경우 hooni 2014.12.18 2204
1108 Develop [c#] BHO 한샘툴바랑 동현툴바.. secret hooni 2013.04.23 2208
1107 Develop [ios] 아이폰 앱 이름 및 버전 정보 hooni 2015.03.24 2211
1106 Develop [ios] StoryBoard(xib) 없이 프로젝트 만들기 file hooni 2015.02.12 2238
1105 Etc WM미통기 - 10. 조건부확률 hooni 2015.04.20 2260
1104 Develop [ios] VIN Scanner (VIN barcode) 스캐너 file hooni 2017.09.16 2272
1103 Develop [git] 쉬운 버전관리 Git 설명 hooni 2015.08.18 2274
1102 Develop [ios] 비디오,네트워크,소셜로그인 테스트 file hooni 2017.04.04 2285
1101 Etc 수리통계학 : 표본공간과 사상-1 hooni 2015.04.20 2295
1100 Develop [ios] UIWebView를 이용한 로컬 HTML 파일 표시 file hooni 2015.01.02 2312
1099 System/OS [linux] yum 업데이트 시 커널 제외하기 hooni 2014.09.11 2325
1098 Develop [ios] iOS 앱 아이콘을 만드는 유틸 file hooni 2015.01.03 2327
Board Pagination Prev 1 3 4 5 6 7 ... 74 Next
/ 74