Home > other >  How to change string case in NIM?
How to change string case in NIM?

Time:01-27

In NIM 0.17 toLower is deprecated. So, what would be the proper way of changing the case of a string in NIM?

CodePudding user response:

strutils.toLowerAscii or unicode.toLower depending on which you want.

  • Related