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

in vimscript, how can i get http://www.google.com out of this using a regexp, and store it in another variable?

i can't seem to find any documentation about this.

thanks in advance!

link|improve this question

feedback

2 Answers

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

For more information, see:

:h matchstr()
:h /\c
:h /\zs
:h /\{-
link|improve this answer
thanks! will look those up. i just don't know where to search for when it comes to vimscript – guest Jun 28 '10 at 19:23
2  
@guest: Worst case, you can skim through :help functions (alphabetical) or :help function-list (by category) to find functions. – Jefromi Jun 28 '10 at 19:27
feedback

i just don't know where to search for when it comes to vimscript

very good article series by damian conway here about vim scripting: http://www.ibm.com/developerworks/linux/library/l-vim-script-1/index.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.