Returns the specified string converted to lowercase.
Remarks
The casing rules of the invariant culture are used to convert the
s to lowercase.
string string::to-lower(s)
Parameters
Name | Type | Description |
---|---|---|
s | string | input string |
Return Value
The string s in lowercase.
Examples
string::to-lower('testing string') ==> 'testing string'
string::to-lower('Testing String') ==> 'testing string'
string::to-lower('Test 123') ==> 'test 123'
Requirements
- Assembly
- NAnt
.Core .dll - Namespace
-
NAnt
.Core .Functions