Archive: toLower()


toLower()
Is there an equivalent in NSIS to toLower that takes a string and makes it all lower case so that you don't have to compare all possible "case" scenarios?

Thanks,
Eric


See included StrFunc.nsh


The basic StrCmp instruction is not case sensitive, no need to change case or worry over it. Likewise the LogicLib '==' is not case sensitive.


On 1st look, StrFunc header looks a bit hard to figure...
Considering that there is a good reason to be included into the NSIS release, you should keep trying on it, at the end you'll find out that it is very useful stuff.


Thanks!