|
ToUpper
string
ToUpper(string
string)
Return
Value
A
string, containing all characters in uppercase.
Parameters
string
– a
string.
Remarks
Converts given
string to uppercase string.
Example
The following
example demonstrates the use of ToUpper.
# Example for ToUpper
strings
=
ToUpper("Hello,
World"
)
Println("New
string is
",
s)
Output of the example
script:
New string is HELLO,
WORLD
|