Extracts the y first characters from the String from Left.
Left( x,y )
x | The string to extract characters from |
---|---|
y | How many characters to extract from the string (going from the Left) |
String.
Left("abcdef",3) // Returns "abc" Left("unhgjdssasdlkweuixcna",5) // Returns "unhgj"