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


?

  1. [ubuntu] 우분투 18.04에 PHP5 설치하기

    Date2020.11.14 CategoryDevelop Byhooni Views3271
    Read More
  2. [ios] 배경에 Gradient 적용하기 (CAGradientLayer)

    Date2024.12.14 CategoryDevelop Byhooni Views3267
    Read More
  3. Aspect Oriented Programming in Objective-C

    Date2015.05.18 CategoryDevelop Byhooni Views3255
    Read More
  4. [js] URL 파싱하기 (jQuery 안쓰고)

    Date2017.12.14 CategoryDevelop Byhooni Views3148
    Read More
  5. [c] 한글 문자열 출력

    Date2015.11.10 CategoryDevelop Byhooni Views3128
    Read More
  6. [ios] binary를 C코드로 변환

    Date2015.01.03 CategoryDevelop Byhooni Views3126
    Read More
  7. [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태

    Date2018.10.19 CategoryDevelop Byhooni Views3120
    Read More
  8. [android] 가속도 센서를 이용한 흔듦(Shake) 감지

    Date2014.11.04 CategoryDevelop Byhooni Views3064
    Read More
  9. [js] 모바일 스크롤 방지(해제)

    Date2015.04.14 CategoryDevelop Byhooni Views3046
    Read More
  10. [Javascript][Ajax] 자바스크립트 강의 산출물

    Date2019.10.05 CategoryDevelop Byhooni Views3030
    Read More
  11. [swift] 실행시간 측정하기

    Date2021.09.14 CategoryDevelop Byhooni Views3020
    Read More
  12. [android] 간단한 SQLIite 예제

    Date2017.06.14 CategoryDevelop Byhooni Views3009
    Read More
Board Pagination Prev 1 ... 58 59 60 61 62 63 64 65 66 67 ... 71 Next
/ 71