findstring
, findstringi
funkce NMAKE
Vyhodnotí se jako hledaný řetězec, pokud se najde v jiném řetězci.
Syntaxe
$(findstring searchFor,input)
$(findstringi searchFor,input)
Parametry
searchFor
Řetězec, který se má vyhledat.
input
Řetězec, ve který se má hledat.
Vrácená hodnota
Pokud searchFor
je nalezen uvnitř input
, funkce vrátí , jinak vrátí searchFor
hodnotu null.
Poznámky
findstringi
nerozlišuje malá a velká písmena verze findstring
.
Tato funkce makra je dostupná od sady Visual Studio 2022 ve verzi 14.30 nebo novější.
Příklad
$(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