Looking to parse an HTML document, and I need to find all occurrences of string "asdf" in the document. I currently have the HTML loaded into a string variable. I would just like the character position so I can loop through the list to return some data after the string. I see there is the strpos function which only returns the first occurrence, but how would I go about returning ALL iterations?Thanks in advance!