lowercase
NMAKE 函数
计算结果为一个字符串,其中所有字符都已转换为其小写等效字符。
语法
$(lowercase input)
参数
input
要转换的字符串。
返回值
返回 input
,但所有字符都已转换为其小写等效字符。
备注
从 Visual Studio 2022 版本 17.2 开始,此宏函数在 NMAKE 版本 14.32 或更高版本中可用。
示例
$(lowercase Hello World!) # Evaluates to "hello world!"