Mid()
Syntax
Result$ = Mid(String$, StartPosition, Length)Description
Extract a string of specified 'Length' from the given 'String$'. 'StartPosition' specifies which character position to start extracting from. 'Length' specifies how many characters from that position you want to extract.
Example :Debug Mid("Hello", 2, 3) ; Will display "ell"
Supported OS
All