vimscript中的正则表达式

时间:2010-06-28 19:02:24

标签: regex vim viml

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

在vimscript中,如何使用正则表达式将http://www.google.com取出,并将其存储在另一个变量中?

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

1 个答案:

答案 0 :(得分:28)

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 /\{-