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

잔글 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))
잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
 
27번째 줄: 27번째 줄:
*[[리눅스 strings]]
*[[리눅스 strings]]


==참고 자료==
==참고==
*http://stackoverflow.com/questions/16717583/remove-all-chars-that-are-not-a-digit-from-a-string
*http://stackoverflow.com/questions/16717583/remove-all-chars-that-are-not-a-digit-from-a-string


[[분류: 리눅스 필터]]
[[분류: 리눅스 필터]]

2017년 7월 11일 (화) 04:18 기준 최신판

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

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 }}