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
405 Develop [c] 텍스트 파일(로그)을 정해진 라인 단위로 쪼개주는 코드 file hooni 2013.04.23 7051
404 Develop [C++] 18일차 과제물, String 클래스 디자인 【 C++ 문제 】 hooni 2013.04.23 7047
403 Develop [c++] 소켓 프로그래밍 관련 링크.. (퍼올려고 올린거) hooni 2013.04.23 7036
402 Develop [c] 내가 만든 암호화 프로그램.. 좋아^^ file hooni 2013.04.23 7030
401 Develop [c] 단어 입력/수정 프로그램 소스 file hooni 2003.04.23 7029
400 Develop [c] openssl 샘플코드.. 어려움 ㅠㅠ file hooni 2013.04.23 7028
399 Develop [c] 정사각배열의 서브 배열의 최대 값 구하기 file hooni 2003.04.23 7025
398 Develop [js] 큐 형식으로 배열사용.. ㅋㅋ hooni 2013.04.23 7022
397 Develop [c] 패스워드 암호화/사용자 정보 보기 file hooni 2003.04.23 7016
396 Develop [c] C에서 MySQL DB 사용하기~ file hooni 2003.04.23 7011
395 Develop [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java) file hooni 2003.04.23 7011
394 Develop [js] 이미지 미리 로딩하기 hooni 2003.04.23 7008
Board Pagination Prev 1 ... 60 61 62 63 64 65 66 67 68 69 ... 98 Next
/ 98