| Function | Definition |
|---|---|
| UPCASE | Converts letters in a character string to uppercase. |
| LOWCASE | Converts letters in a character string to lowercase. |
| PROPCASE | Converts text to proper case by capitalising the first letter of each word and lowercasing the remaining letters. |
| Function | Definition |
|---|---|
| LENGTH | Returns the number of characters excluding trailing blanks and returns 1 for a blank string. |
| LENGTHN | Returns the number of characters excluding trailing blanks and returns 0 for a blank string. |
| Function | Definition |
|---|---|
| SCAN | Extracts a word from a string based on word position and delimiters. |
| Function | Definition |
|---|---|
| SUBSTR | Extracts part of a string and can also be used on the left side of an assignment to replace part of a string. |
| Function | Definition |
|---|---|
| FIND | Returns the position of the first occurrence of a substring within a string. |