HTMLTagID_Previous

Return id for any html tag that was found above certain location of html page.
Used for reading inside Edgar document

CodeFunctionName
What is this?

Public

Tested

Original Work
Function HTMLTagID_Previous(FullPage, StartFromLocation)
    ' Return id for any html tag that was found above this section, inside Edgar document
    ' Needs CutString9(), VBInstr_Rev()
    Rett = ""
    FirstID = VBInstr_Rev(" ID=", FullPage, StartFromLocation)
    If FirstID > 0 Then
        Rett = CutString9(FullPage, """|=|'|id=", """|'| | <| >", "|", FirstID)
        ' Rett = "#" & Rett
    End If
    HTMLTagID_Previous = Rett
End Function

FullPage, StartFromLocation

Views 141

Downloads 75

CodeID
DB ID