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:Mid("Hello", 2, 3) ; Result will be "ell".
Supported OS
All