Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 897 Bytes

nmake-function-uppercase.md

File metadata and controls

40 lines (27 loc) · 897 Bytes
description title ms.date helpviewer_keywords monikerRange
Learn more about: uppercase NMAKE function
uppercase NMAKE function
2/23/2022
uppercase NMAKE function
NMAKE function, uppercase
>=msvc-170

uppercase NMAKE function

Evaluates to a string where all characters have been converted to their uppercase equivalent.

Syntax

$(uppercase input)

Parameters

input
The string to convert.

Return value

Returns input, but all characters have been converted to their uppercase equivalent.

Remarks

This macro function is available starting in Visual Studio 2022 version 17.2, in NMAKE version 14.32 or later.

Example

$(uppercase Hello World!) # Evaluates to "HELLO WORLD!"

See also

Macros and NMAKE
NMAKE functions by category