Code archives/Algorithms/Get what's on the other side of the equal sign even faster.

This code has been declared by its author to be Public Domain code.

Download source code

Get what's on the other side of the equal sign even faster. by Chroma2004
Cleaning up some old old code to be more compact.

The sep$="=" is the separator. It defaults to "=" but you can set this to whatever charater you want to separate your information.
Function ReadInfo$(txt$,sep$="=")
	Return Mid$(txt$,Instr(txt$,sep$)+1)
End Function

Comments

None.

Code Archives Forum