let test = 'a href="http://www.google.com">www.google.com</a;'
在vimscript中,如何使用正则表达式将http://www.google.com
取出,并将其存储在另一个变量中?
我似乎找不到任何关于此的文档。
答案 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 /\{-