m Yosh moved page ProtoFlux:ToLower(Character) to ProtoFlux:ToLower: coalesce string and char version in one page |
coalesce |
||
Line 4: | Line 4: | ||
|Inputs= | |Inputs= | ||
[ | [ | ||
{"Name":"Character", "Type":" | {"Name":"Character", "Type":"Dummy"} | ||
] | ] | ||
|Outputs= | |Outputs= | ||
[ | [ | ||
{"Name":"*", "Type":" | {"Name":"*", "Type":"Dummy"} | ||
] | ] | ||
|}} | |}} | ||
The ''' | The '''ToLower''' node takes in a character or string and outputs it as lowercase. This node takes into account the local user's [[Type:CultureInfo|CultureInfo]]. | ||
== Inputs == | == Inputs == | ||
=== * ( | === * (Generic) === | ||
The character to make lower case. | |||
The character or string to make lower case. | |||
== Outputs == | == Outputs == | ||
=== * ( | === * (Generic) === | ||
The lower case version of the given character. Characters that do not have a lowercase version mapped will not be changed. | |||
The lower case version of the given character or string. Characters that do not have a lowercase version mapped will not be changed. | |||
The specifics of Unicode uppercase and lowercase character mapping is too involved for this wiki page, but if one is interested, see [https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt the official Unicode data file] as well as [https://en.wikipedia.org/wiki/Unicode_character_property#Semantic_elements the format used for the file]. | The specifics of Unicode uppercase and lowercase character mapping is too involved for this wiki page, but if one is interested, see [https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt the official Unicode data file] as well as [https://en.wikipedia.org/wiki/Unicode_character_property#Semantic_elements the format used for the file]. | ||
== See | == See also == | ||
* [https://learn.microsoft.com/en-us/dotnet/api/system.string.tolower#system-string-tolower Microsoft | |||
* [[ProtoFlux:ToUpper]] to turn strings or characters uppercase. | |||
* [https://learn.microsoft.com/en-us/dotnet/api/system.string.tolower#system-string-tolower Microsoft documentation for the <code>String.ToLower() method</code>, which is used internally.] | |||
[[Category:ProtoFlux:Strings:Characters]] | [[Category:ProtoFlux:Strings:Characters]] | ||
[[Category:ProtoFlux:Strings:Formatting]] |
Revision as of 04:35, 25 August 2025
To Lower
Characters
The ToLower node takes in a character or string and outputs it as lowercase. This node takes into account the local user's CultureInfo.
Inputs
* (Generic)
The character or string to make lower case.
Outputs
* (Generic)
The lower case version of the given character or string. Characters that do not have a lowercase version mapped will not be changed.
The specifics of Unicode uppercase and lowercase character mapping is too involved for this wiki page, but if one is interested, see the official Unicode data file as well as the format used for the file.
See also
- ProtoFlux:ToUpper to turn strings or characters uppercase.
- Microsoft documentation for the
String.ToLower() method
, which is used internally.