We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Returns a specified number of characters from the start of the supplied string Example: LEFT('abacd', 2)
Returns the length of the supplied string Example: LEN('abc')
Returns the supplied string in lower case Example: LOWER('ABC')
Example: MID('abacd', 2, 2)
Example: REPLACE('testar', 3, 3, 'hej')
Example: RIGHT('abacd', 2)
Example: SUBSTITUTE('testing testing', 'es', 'xx')
Home