I have the following string:
data-event-title="Yuichi Sugita* vs Adrian Mannarino">
<span class="odds-container">
<b class="odds">1/12</b>
</a>
And I would like to capture Yuichi Sugita
and 1/12
. For that I created the following regex:
ata-event-title="(.+)".+ class="odds">(.+)<
which has two capture groups in parenthesis (when I use them separately they work fine), but the problem is that the .+
in between them does not work as expected.
Any suggestions are appreciated.