Code:
alias innertext {
  return $regex($2,$$1-,/>([^>]+?)<\//g)
}

alias test {
  var %text = <center>Statistics for Account Test</center><br>	 <b><font color='orange'>Admin</font><img src='/img/1.gif'><font color='orange'> - Admin Level 5</font></b><br><b>
  var %i = 1, %matches = $innertext(%text)
  while (%i <= %matches) {
    echo -ag $regml(%i)
    inc %i
  }
}