"리눅스 숫자 필터"의 두 판 사이의 차이

24번째 줄: 24번째 줄:
==같이 보기==
==같이 보기==
*[[리눅스 tr]]
*[[리눅스 tr]]
*[[리눅스 sed]]
*[[리눅스 strings]]
*[[리눅스 strings]]
*[[정규식 문자클래스]]


==참고 자료==
==참고 자료==

2015년 6월 9일 (화) 00:52 판

리눅스 숫자 필터
문자열에서 숫자만 추출하기

1 방법 1: tr

[root@zetawiki ~]# echo 'hello123 world45' | tr -cd [0-9]
12345

2 방법 2: sed

[root@zetawiki ~]# echo 'hello123 world45' | sed 's/[^0-9]//g'
12345

3 방법 3

[root@zetawiki ~]# str='hello123 world45'
[root@zetawiki ~]# number=${str//[^0-9]}
[root@zetawiki ~]# echo $number
12345

4 같이 보기

5 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}