toupper
The toupper
function converts a string to upper case.
If the input string is null
, the function returns a blank string.
Syntax
toupper( String )
Arguments
- String: A string.
Example
print str1="Hello, World" | extend newstr=toupper(str1)