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

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

php - joomla get content in onBeforeCompileHead function -