답변:
Vim의 정규 표현식에는 탐욕스럽지 않은 버전의 연산자에 대한 특별한 구문이 있습니다 (성가 시지만 기억해야합니다) : http://vimregex.com/#Non-Greedy
욕심없는 버전은 *
입니다 \{-}
. 따라서 간단히 다음 .*
과 .\{-}
같이 바꾸십시오 .
:%s/\(https\?:\/\/.\{-}\/\).*/\1/gc
또한 [^\]+/.
탐욕을 방지하기 위해 사용할 수 있습니다 . [^/]
"무엇이든 기대 /
하고 일치한다는 것을 의미하며 , +
한 번 이상 반복합니다 ..
:%s!\v^(https?)\://([^/]+)/.*$!Protocol:\1 \t Domain:\2!g
/
정규식에 있으면 !
분리 기호로 사용 하여 탈출 할 필요가 없습니다 /
.
다음 URL이 있다고 가정 해 봅시다.
http://academy.mises.org/courses/econgd/
http://academy.mises.org/moodle/course/view.php?id=172
http://acmsel.safaribooksonline.com/book/-/9781449358204?bookview=overview
http://acmsel.safaribooksonline.com/home
http://acordes.lacuerda.net/bebo__cigala/lagrimas_negras-2.shtml
http://acordes.lacuerda.net/jose_antonio_labordeta/albada.shtml
http://anarchitext.wordpress.com/category/new-middle-east/
https://courses.edx.org/courses/course-v1%3ADelftX%2BFP101x%2B3T2015/wiki/DelftX.FP101x.3T2015/resources-and-links/
https://cseweb.ucsd.edu/classes/wi11/cse230/lectures.html
https://developer.mozilla.org/en-US/docs/CSS
https://developers.google.com/edu/python
https://developers.google.com/structured-data/testing-tool/
대체를 적용하면 다음과 같이됩니다.
Protocol:http Domain:academy.mises.org
Protocol:http Domain:academy.mises.org
Protocol:http Domain:acmsel.safaribooksonline.com
Protocol:http Domain:acmsel.safaribooksonline.com
Protocol:http Domain:acordes.lacuerda.net
Protocol:http Domain:acordes.lacuerda.net
Protocol:http Domain:anarchitext.wordpress.com
Protocol:https Domain:courses.edx.org
Protocol:https Domain:cseweb.ucsd.edu
Protocol:https Domain:developer.mozilla.org
Protocol:https Domain:developers.google.com
Protocol:https Domain:developers.google.com
:help greedy
올바른 도움말 주제로 이동했을 것입니다.:help regexp
Vim의 정규 표현식을 설명하는 데 도움이됩니다.