Partager via


findstring, findstringi fonctions NMAKE

Évalue la chaîne recherchée si elle se trouve dans une autre chaîne.

Syntaxe

$(findstring searchFor,input)
$(findstringi searchFor,input)

Paramètres

searchFor
Chaîne à rechercher.

input
Chaîne dans laquelle effectuer la recherche.

Valeur retournée

Si searchFor elle est trouvée dans input, la fonction retourne searchFor, sinon elle retourne null.

Notes

findstringi est la version non sensible à la casse de findstring.

Cette fonction de macro est disponible à partir de Visual Studio 2022, dans NMAKE version 14.30 ou ultérieure.

Exemple

$(findstring Hello,Hello World!) # Evaluates to "Hello"
$(findstring Hey,Hello World!) # Evaluates to ""

$(findstring hello,Hello World!) # Evaluates to "" - findstring is case-sensitive
$(findstringi hello,Hello World!) # Evaluates to "hello" - findstringi is case-insensitive

Voir aussi

NMAKE et les macros
Fonctions NMAKE par catégorie