$strupper function
$strupper(string)
The $strupper function returns string converted to uppercase. If string is empty, the result is an empty string.
Parameters
All parameters may contain symbolic references; these are resolved before the function is applied. See Examples below.
- string
- String to convert to uppercase.
Examples
Here are some usage examples for this function:
- <$strupper(C:\Program Files\InstallMate\Bin\Tin.exe)>
- Returns C:\PROGRAM FILES\INSTALLMATE\BIN\TIN.EXE from the literal path.
- <$strupper(<INSTALLDIR>\Bin\Tin.exe)>
- Returns C:\PROGRAM FILES\INSTALLMATE\BIN\TIN.EXE from the symbolic path, assuming that <INSTALLDIR> resolves to the appropriate folder path.
- <$strupper(<#Tin_alias>)>
- Returns C:\PROGRAM FILES\INSTALLMATE\BIN\TIN.EXE from the file alias path, assuming that Tin_alias is the file alias for the Tin.exe executable.