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
번호 분류 제목 글쓴이 날짜 조회 수
23 Database [oracle] Oracle 사용자 추가 절차 hooni 2019.11.22 618
22 Database [mysql] MySql DB/테이블 사이즈 확인을 위한 쿼리 hooni 2019.11.22 660
21 Database [mysql] MySQL 데이터베이스 추가 및 사용자 추가 hooni 2019.11.22 665
20 Database [mysql] MySQL 백업 및 복구 hooni 2019.11.22 821
19 Database [mysql] ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. hooni 2017.12.15 1199
18 Database [mysql] MacOS에 MySQL 설치, 설정, 암호 재설정 file hooni 2017.12.15 1466
17 Database SQL JOIN 정리 (Inner Join & Outer Join) file hooni 2019.11.22 1836
16 Database [mysql] MySql 에서 정렬 후 그룹 하는 방법 hooni 2015.05.07 3008
15 Database [mysql] 중복데이터 삭제하는 초간단 쿼리 hooni 2017.11.22 3423
14 Database [mysql] MySQL 한글 깨짐 현상 해결하기(UTF8) hooni 2017.12.01 5469
13 Database [mysql] CPU 점유율이 높을 때 확인할 내용 hooni 2015.08.26 6647
12 Database [sql] 한눈에 보이는 Join file hooni 2014.02.19 8463
Board Pagination Prev 1 2 Next
/ 2