Upper(), UppercaseString()
Summary
Converts a string to upper case.
Changes
Optional options array added in Version 6.0/2012.
Syntax
new_string = Upper(string input_string [, array options])
| Argument | Contents |
|---|---|
| input_string | Any string |
| Option | Type | Contents |
|---|---|---|
| Deaccent | String | "LATIN-1" to convert Western European accented characters into their no-accented equivalent |
Returns
A string equal to input_string but with all lower case letters converted to upper case.
Notes
-
Can also be called as UppercaseString().
-
The options array is an optional argument.
See Also
| Function | Summary |
|---|---|
| Proper() | Converts a string to proper case (initial letter capitalized) |
| Lower() | Converts a string to lower case |