Contents

?

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
157 Develop [ios][swift] 초간단 To-do Memo file hooni 2016.06.27 11037
156 Develop [ios][swift] 초간단 카달로그 앱 (Catalog App) file hooni 2016.06.27 14308
155 Etc 영어. 반드시 외워야 할 단어 file hooni 2016.07.07 3995
154 Etc 영어. 반드시 외워야 할 영어 숙어 2 file hooni 2016.07.07 8104
153 Develop [ios] 새로 만들고 있는 DateMemo file hooni 2016.07.12 1896
152 Develop [ios] Crashlytics, Fabfic 설치/설정 hooni 2016.07.21 2359
151 Develop [c] 파일명 또는 특정 패턴을 적용 file hooni 2016.08.03 2406
150 Develop [android] Android N requires the IDE to be running with Java 1.8 or later 오류 hooni 2016.08.30 2781
149 PPT 삼성페이(Samsung Pay) 구조 file hooni 2016.09.09 2795
148 Develop [c] 셀프 넘버(Self Number) 구하기 1 hooni 2016.09.09 3825
147 Develop [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치 hooni 2016.10.03 5057
146 Develop [c] RSA 암호화 구현(gmp 라이브러리 활용) file hooni 2016.10.03 2744
Board Pagination Prev 1 ... 81 82 83 84 85 86 87 88 89 90 ... 99 Next
/ 99