I am new to regular expression.
The contents is
">blablabla</a> </td>blablabla "> 8.8GB </a> </td>
I want to get the value 8.8
, but if i use (?<=">)(.*?)(?=GB<\/a>)
, it will get the texts before 8.8 as well, ie. ">blablabla</a> </td>blablabla "> 8.8GB
I don't know how to solve this. Any help is much appreciated.