Contents

?

단축키

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
번호 분류 제목 글쓴이 날짜 조회 수
1165 Develop [C] C언어의 조건 연산자(Conditional Operator) hooni 2003.04.23 15740
1164 Develop [c] 파일입출력 간단한 설명 hooni 2003.04.23 13579
1163 Develop [c] home env stack overflow hooni 2003.04.23 22149
1162 Develop [c] scanf(), printf() 포맷의 형변환 hooni 2003.04.23 12520
1161 Develop [c] CGI Library to C^^ hooni 2003.04.23 9689
1160 Develop [c] 간단한 링크드 리스트(linked list) 자료형 예제.. hooni 2003.04.23 11886
1159 Develop [php] whois정보 조회 프로그램 hooni 2003.04.23 12835
1158 Develop [c] 최대공약수 알고리즘 (유클릿) hooni 2003.04.23 10358
1157 Develop [c] 소수점 반올림^^ hooni 2003.04.23 9686
1156 Develop [c] 하노이탑 - 재귀함수 hooni 2003.04.23 10706
1155 Develop [c] 팩토리얼.. - 재귀함수 hooni 2003.04.23 10932
1154 Develop [c] 간단한 채팅(클라이언트/서버) 프로그램 소스 file hooni 2003.04.23 10405
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 99 Next
/ 99