VB6 Split String with < > Characters -
i trying split this
when source webpage , contains value multiple times, don't think split because of "<" character, way around this?
sourcesplit = split(source, "<span class='btext' id='btext'>")
i tried using chr(60) instead, didn't either, ideas?
thanks help
i guess html uses double quotes attribute values, not single. need escape double quotes:
sourcesplit = split(source, "<span class=""btext"" id=""btext"">")
Comments
Post a Comment