How do I get the following values in Regex from the following string
<tr><td>4 <td><b><a href="number.php?v=41a&k=53&t=102">3</a></b>
v = 41
k = 45
t = 102
I wanted only the number of each segment (v k t)
I tried this and got only one at a time
v=\d+
parse_urlto extract the query part of the url. 3) useparse_strto get the different values.