I want to extract some exact words from a variable (in fact, url's) and create a new variable which contains only the extracted words. Examining the patterns I found that I want the words the characters \\"> and ", as follow:
> dados$source[1:20]
[1] "<a href=\\\"http://twitter.com/download/iphone\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>"
[2] "<a href=\\\"http://twitter.com/download/android\\\" rel=\\\"nofollow\\\">Twitter for Android</a>"
[3] "<a href=\\\"http://twitter.com\\\" rel=\\\"nofollow\\\">Twitter Web Client</a>"
How can I do it?