19
let test = 'a href="http://www.google.com">www.google.com</a;'

在 vimscript 中,如何http://www.google.com使用正则表达式摆脱这种情况,并将其存储在另一个变量中?

我似乎找不到任何关于此的文档。

4

1 回答 1

38
let url = matchstr(test, '\ca href=\([''"]\)\zs.\{-}\ze\1')
if empty(url) 
   throw "no url recognized into ``".test."''"
endif

有关更多信息,请参阅:

:h matchstr()
:h /\c
:h /\zs
:h /\{-
于 2010-06-28T19:20:15.100 回答