I have data in csv which contains following column
ARTICLE_URL
http://twitter.com/aviryadsh/statuses/528219883872337920
http://www.ibtimes.co.in/2014
I want to create an another columns next to this column where I can have only the web address like twitter.com, team-bhp.com, ibtimes.co.in,broadbandforum.co
.
I have tried
text$ne=str_extract(Brand$ARTICLE_URL, '\\w+(.com)')
but this is giving only url which are ending with .com how to fetch all other also.