"Bash indexOf"의 두 판 사이의 차이

(새 문서: ==개요== ;Bash indexOf <source lang='bash'> STR="Hello World!" echo $STR | awk '{print index($0,"ll")}' # 3 echo $STR | awk '{print index($0,"ld")}' # 10 echo $STR | awk '{print in...)
 
잔글 (Jmnote님이 Bash indexOf() 문서를 Bash indexOf 문서로 이동했습니다)
(차이 없음)

2019년 9월 1일 (일) 18:37 판

1 개요

Bash indexOf
STR="Hello World!"
echo $STR | awk '{print index($0,"ll")}'
# 3
echo $STR | awk '{print index($0,"ld")}'
# 10
echo $STR | awk '{print index($0,"H")}'
# 1
echo $STR | awk '{print index($0,"z")}'
# 0

2 같이 보기

3 참고

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