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

30번째 줄: 30번째 줄:
*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


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

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

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

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