Views 1100 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
23 Database [oracle] Oracle 사용자 추가 절차 hooni 2019.11.22 614
22 Database [mysql] MySql DB/테이블 사이즈 확인을 위한 쿼리 hooni 2019.11.22 656
21 Database [mysql] MySQL 데이터베이스 추가 및 사용자 추가 hooni 2019.11.22 661
20 Database [mysql] MySQL 백업 및 복구 hooni 2019.11.22 817
19 Database [mysql] ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. hooni 2017.12.15 1193
18 Database [mysql] MacOS에 MySQL 설치, 설정, 암호 재설정 file hooni 2017.12.15 1458
17 Database SQL JOIN 정리 (Inner Join & Outer Join) file hooni 2019.11.22 1832
16 Database [mysql] MySql 에서 정렬 후 그룹 하는 방법 hooni 2015.05.07 3008
15 Database [mysql] 중복데이터 삭제하는 초간단 쿼리 hooni 2017.11.22 3419
14 Database [mysql] MySQL 한글 깨짐 현상 해결하기(UTF8) hooni 2017.12.01 5463
13 Database [mysql] CPU 점유율이 높을 때 확인할 내용 hooni 2015.08.26 6643
12 Database [sql] 한눈에 보이는 Join file hooni 2014.02.19 8461
11 Database [mysql] 쿼리 실행시 ERROR 1366 (HY000) : incorrect string value : for column 3 hooni 2017.03.30 8769
10 Database [sql] 쿼리로 문자열 검색해서 일괄 치환하기 hooni 2014.02.13 9968
9 Database [mysql] 루트 암호 초기화 hooni 2013.04.23 11044
8 Database [oracle] SQL문 실행 방법 3가지 file hooni 2013.12.19 12121
Board Pagination Prev 1 2 Next
/ 2