I'
m working with the regular expressions option and it looks like webscraper.io only returns the full match. I need group 1 to be returned, not the full match. There must be a way to do this.
RegEx: title="(.*?)"
Example String: <span class="ui_bubble_rating bubble_50"></span><span class="ratingDate relativeDate" title="November 5, 2017">Reviewed 5 days ago </span>
Result from webscraper: title="November 5, 2017"
Obviously the goal is to only capture: November 5, 2017 ... this is group 1 of the provided RegEx. The full match is what is currently being returned. Am I missing something here? Is it possible to return group 1. Without that capability the Regex is really limited.
Thanks!