I am using the below code to get the string between HTML tags but I am not getting what I want. Can anyone help.
$sUrl = InputBox ("Required Information", "Enter the URL", "", "", - 1, -1, 0, 0)
$oIE = _IECreate($sUrl)
$sHTML = _IEDocReadHTML($oIE)
$Results = _StringBetween($sHTML, '<status','/status>')
MsgBox(0, 'DONE!!!', 'The error code is ' & $Results)