Programming,  Vim

[Vim] 문자열 치환

Command Usage

:[Range]s/[Target String]/[String to be updated]/[Option]

Range

ExpressionExampleDescription
시작 행, 종료 행1, 101~10행 사이에서 치환
.1,.1행부터 현재 커서가 위치한 행 까지
$.,$현재 커서 위치부터 마지막 행 까지
%%전체 행

Option

OptionDescription
g한 행에 다수의 패턴이 나오면 모두 변경
i대소문자 구분하지 않음
c치환 시 사용자가 하나씩 확인

Leave a Reply

Your email address will not be published. Required fields are marked *