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
번호 분류 제목 글쓴이 날짜 조회 수
253 Develop [c] 웹 메모장.. ㅋㅋ file hooni 2013.04.23 6848
252 Develop [c] 학교 건물 최단거리 찾는 웹 연동 프로그램 file hooni 2013.04.23 6828
251 Develop [js] One Time Pad key generatorㅡ.,ㅡ; file hooni 2013.04.23 6826
250 Develop [c] 파일 복사(copy) 프로그램 샘플 소스 file hooni 2003.04.23 6821
249 Develop [php] 피코맥스용 검색엔진 ㅋㅋ file hooni 2013.04.23 6815
248 Develop [js] ajax를 이용해 외부문서 불러오기.. hooni 2013.04.23 6811
247 Develop [c] 문자열 컨트롤 함수로 만든 프로그램들.. file hooni 2003.04.23 6802
246 Develop [js] 실행되는 디렉토리 확인하는 스크립트.. hooni 2013.04.23 6788
245 Develop [js] 한글문서로 된 259가지 자바스크립트 예제파일 file hooni 2013.04.23 6779
244 Develop [pdf] C 국제 표준 문서 file hooni 2013.04.23 6778
243 Develop [c] 시간 계산 하는 프로그램 소스코드 file hooni 2003.04.23 6776
242 Develop [c] 프로그래밍 과제..(colprint) file hooni 2003.04.23 6774
Board Pagination Prev 1 ... 45 46 47 48 49 50 51 52 53 54 ... 71 Next
/ 71