VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Manipulating strings (can be use to get texts from HTML scrypts)

by Olabenjo Tunde (5 Submissions)
Category: String Manipulation
Compatability: Visual Basic 3.0
Difficulty: Unknown Difficulty
Originally Published: Fri 8th July 2005
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Manipulating strings (can be use to get texts from HTML scrypts)

Rate Manipulating strings (can be use to get texts from HTML scrypts)




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


Download this snippet    Add to My Saved Code

Manipulating strings (can be use to get texts from HTML scrypts) Comments

No comments have been posted about Manipulating strings (can be use to get texts from HTML scrypts). Why not be the first to post a comment about Manipulating strings (can be use to get texts from HTML scrypts).

Post your comment

Subject:
Message:
0/1000 characters