Manipulating strings (can be use to get texts from HTML scrypts)
Manipulating strings (can be use to get texts from HTML scrypts)
Rate Manipulating strings (can be use to get texts from HTML scrypts)
(1(1 Vote))
pos=Instr(data,"<")
data=Mid$(data,pos+1) 'data now=name>
pos=Instr(data,">")
data=Val(Left$(data,pos-1)) 'removes the ">" from the string"name>"
'data = name
Manipulating strings (can be use to get texts from HTML scrypts) Comments
No comments yet — be the first to post one!
Post a Comment