Views 1102 Votes 0 Comment 0
?

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
565 Develop [c++] 쓰레드(Thread) 객체의 사용 hooni 2013.04.23 8576
564 Develop [c] 아파치 모듈(Apache Module) 만들기 hooni 2013.04.23 8598
563 Develop [c++] 압축프로그램(Lite Zip) 샘플 file hooni 2013.04.23 8603
562 Develop [java] 그래픽(도형,다각형..) 이동,확대,축소,회전에 대한 내용.. 1 file hooni 2013.04.23 8636
561 Develop [c] 문자열 처리(문자열 자르기) hooni 2003.04.23 8637
560 Develop [c++] namespace 사용 예 hooni 2003.04.23 8654
559 Develop [asp] 문자열 넘겨받기 (get,post) hooni 2013.04.23 8679
558 Develop [css] 화면 스크롤 제어 ㅋㅋ hooni 2003.04.23 8681
557 Develop 논문 실험용 고려대 툴바 ㅎㅎ secret hooni 2013.04.23 8686
556 Develop [asem] CMOS 패스워드 알아내기.. 소스.. file hooni 2003.04.23 8694
555 Develop [php] 초간단 게시판 페이지 분할 알고리즘 hooni 2003.04.23 8699
554 Develop [java] Interface 와 abstract hooni 2013.04.23 8704
553 Develop [js] Text 중 URL 형식을 인식해 단축 URL로 변경 file hooni 2013.04.23 8707
552 Develop [c] 캘린더 양음 변환 함수 hooni 2003.04.23 8721
551 System/OS [linux] man 명령어 뽀개기.. hooni 2003.04.23 8723
550 Develop [c] OpenGL 마우스 이벤트 hooni 2003.04.23 8731
Board Pagination Prev 1 ... 37 38 39 40 41 ... 74 Next
/ 74