cvt$$
Syntax
result = CVT$$(text, code)
Arguments
text, result: text
code: see table below
Meaning
Converts characters in text according to the key value code.
Code |
Meaning |
1 |
Text is converted to upper case. |
2 |
Text is converted to lower case. |
4 |
Accents are removed from the characters in text. |
5 |
Text is converted to upper case and accents are removed. |
6 |
Text is converted to lower case and accents are removed. |
10 |
Text is converted to lower case, starting with a capital. |
Example
name = CVT$$('Smith', 1)
Result
The variable name is filled with SMITH.