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


?

  1. [js] 후리자(영규) 스타일들..

    Date2013.04.23 CategoryDevelop Byhooni Views7157
    Read More
  2. [js] 핫키(단축키) 구현방법

    Date2003.04.23 CategoryDevelop Byhooni Views7635
    Read More
  3. [js] 한글주소(URL) 인코딩(encode, Encoding), 자바스크립트(JavaScript)

    Date2013.04.23 CategoryDevelop Byhooni Views11339
    Read More
  4. [js] 한글문서로 된 259가지 자바스크립트 예제파일

    Date2013.04.23 CategoryDevelop Byhooni Views6766
    Read More
  5. [js] 폼(form) 전송시 중복 클릭 방지 간단한 구문

    Date2013.04.23 CategoryDevelop Byhooni Views9319
    Read More
  6. [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드

    Date2013.04.23 CategoryDevelop Byhooni Views16449
    Read More
  7. [js] 툴팁.. 좋은거.. (tooltip)

    Date2013.04.23 CategoryDevelop Byhooni Views7060
    Read More
  8. [js] 키보드 아스키코드(ASCII) 코드보기

    Date2003.04.23 CategoryDevelop Byhooni Views32477
    Read More
  9. [js] 키보드 아스키 코드 확인하는 간단한 소스

    Date2003.04.23 CategoryDevelop Byhooni Views7758
    Read More
  10. [js] 큐 형식으로 배열사용.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7022
    Read More
  11. [js] 쿠키(cookie)에 대한 설명과 예제..

    Date2003.04.23 CategoryDevelop Byhooni Views8322
    Read More
  12. [js] 초간단 현재 사이트 쿠키 확인하는 명령~

    Date2003.04.23 CategoryDevelop Byhooni Views7281
    Read More
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 ... 71 Next
/ 71