Left()
Returns the left part of a string.
Syntax: string = Left( Source as string, Position as byte)
Position: Starts with 1 from left
Example:
dim s as string s = Left("Hello World",5) ' output: "Hello"
en:left
Returns the left part of a string.
Syntax: string = Left( Source as string, Position as byte)
Position: Starts with 1 from left
Example:
dim s as string s = Left("Hello World",5) ' output: "Hello"