ProtoFlux:To Lower (Character): Difference between revisions

From Resonite Wiki
m style, formatting, culture info
oops
 
Line 23: Line 23:
=== * ([[Type:char|char]]) ===
=== * ([[Type:char|char]]) ===
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. 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].


== See Also ==
== See Also ==
* [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.]
* [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.]
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].


[[Category:ProtoFlux:Strings:Characters]]
[[Category:ProtoFlux:Strings:Characters]]

Latest revision as of 20:21, 3 June 2024

To Lower
Character
*
Characters

The To Lower node takes in a character literal and transforms said character into the lower case variant of it. This node takes into account the local user's CultureInfo.

Inputs

* (char)

The character to make lower case.

Outputs

* (char)

The lower case version of the given character. 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