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
51 Develop [vb] 64bit RSA 프로그램 소스 ㅋㅋ file hooni 2013.04.23 9200
50 Develop [vb] 문자열에서 태그 제거함수 (Visual Basic) file hooni 2013.04.23 25597
49 Develop [vb] 비주얼 베이직 131페이지 hooni 2003.04.23 65225
48 Develop [vb] 비주얼 베이직 141페이지 hooni 2003.04.23 65835
47 Develop [vb] 비주얼 베이직 173페이지 hooni 2003.04.23 62142
46 Develop [vb] 비주얼 베이직 205페이지 hooni 2003.04.23 63359
45 Develop [vb] 비주얼 베이직 순위 정렬 루틴 hooni 2003.04.23 66294
44 Develop [vb] 비주얼 베이직 자격증용 ㅎㅎ hooni 2003.04.23 68518
43 Develop [vb] 비쥬얼 베이직 기출 문제 연습 hooni 2003.04.23 62013
42 Develop [vb] 비쥬얼 베이직 기출 문제 연습2 hooni 2003.04.23 61370
41 Develop [vb] 비쥬얼 베이직으로.. hooni 2003.04.23 60514
40 Develop [vc++] 게임 소스 등.. ㅋㅋ file hooni 2013.04.23 19103
Board Pagination Prev 1 ... 62 63 64 65 66 67 68 69 70 71 Next
/ 71