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.
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.