$page=_INetGetSource("http://pagelink")
$pageArray = StringSplit($page, @CRLF)
For $i = 1 To $pageArray[0]
If StringInStr($pageArray[$i], "Confirmation code:") Then
MsgBox(0, "Found it", $pageArray[$i])
$b = _StringBetween($pageArray[$i], "Confirmation code: ", "</a>")
MsgBox(0, "Found it", $b[0])
EndIf
Next
this piece of code works for anybody that will be trying to do this in the future, thank you all