2
I get a string for an RSS feed, the part that matters is the following:
<table feedtag="divinegoblin"
...
Each piece of the feed will always have this attribute feedtag="..."
. I would like to take the value of this attribute (in the divinegoblin case) with Regex. I know almost nothing of Regex, I was trying to pick up using (feedtag)
, but I don’t know how to pick up what is ahead (in case what is inside the quotes). How can I do?
It’s not better to put
"([^"]*)"
to avoid marrying with a quotation mark halfway through?– Jefferson Quesado
Thank you! It worked exactly the way I wanted it to
– Artur Trapp