$strlower function
$strlower(string)
The $strlower function returns string converted to lowercase. If string
is empty, the result is an empty string.
Windows Installer does not support symbolic functions; if you use this function
during an MSI build, you will get diagnostic message BLD:U0010
and the result is undefined.
Parameters
All parameters may contain symbolic references; these are resolved before the
function is applied. See Examples below.
- string
- String to convert to lowercase.
Examples
Here are some usage examples for this function:
- <$strlower(C:\Program Files\Tarma ExpertInstall\Bin\Tin.exe)>
- Returns c:\program files\tarma installer 3\bin\tin.exe from the
literal path.
- <$strlower(<INSTALLDIR>\Bin\Tin.exe)>
- Returns c:\program files\tarma installer 3\bin\tin.exe from the
symbolic path, assuming that <INSTALLDIR> resolves to the
appropriate folder path.
- <$strlower(<#Tin_alias>)>
- Returns c:\program files\tarma installer 3\bin\tin.exe from the
file alias path, assuming that Tin_alias is the file alias for
the Tin.exe executable.