Example:
Code: Select all
nuStringLeft('hello nuBuilder', 5)
will return the string 'hello';
Using the nuStringRight() function, you can extract a specified number of characters starting from the end of a text string.
Example:
Code: Select all
nuStringRight('hello nuBuilder', 9)
will return the string 'nuBuilder';