LEFT(<string>, <nb char>) : Return the first <nb char> of <string> from the left
Ex:
left("Hello",2) Will give He
RIGHT(<string>, <nb char>) : Return the first <nb char> of <string> from the right
Ex:
left("Hello",3) Will give llo
MID(<string>, <start>, <end>): Return part of <string>
Ex:
Mid("Hello", 2, 3) will give ell
Mid("Hello", 3, 1) will give l
Mid("Hello", 2) will give ello
INSRT (<start>, <string1>, <string2>) : Retrun the starting position of <string2> if its found in <string1>
Ex:
Instr(1, "Hello", "e" will give 2
Instr(1, "Hello", "l" will give 3
Instr(4, "Hello", "l" will give 4
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.