I have this string
<img class="img-thumbnail thumb" style="width:100px;height:100px;" src="data:image/png;base64,/9j/4AAQMCgsOCwkJDRENDgBAQjKv+I1atf2Q==" class="img-thumbnail thumb" style="width:100px;height:100px;"
and I just want to grab
data:image/png;base64,/9j/4AAQMCgsOCwkJDRENDgBAQjKv+I1atf2Q==
I've tried multiple attempts on regexr. I'm a bit stuck and so far I have src="(.*)". I'm not sure how to get it to stop at that next quote.