I get a string from an RSS feed, the part of which is of interest:
<table feedtag="divinegoblin"
...
Each piece of the feed will always have this feedtag="..."
attribute. I would like to get the value of this attribute (in the divinegoblin case) with Regex. I know almost nothing about Regex, I was trying to get it using (feedtag)
, but I do not know how to get what's ahead (in this case what's inside the quotation marks). How can I do it?