ProtoFlux:To Upper (Character): Difference between revisions

From Resonite Wiki
m fixup & more details
style, formatting, culture info
 
Line 12: Line 12:
|}}
|}}


The <code>To Upper</code> node takes in a character literal and transforms said character into the uppercase variant of it.
The '''To Upper''' node takes in a character literal and transforms said character into the uppercase variant of it. This node takes into account the local user's [[Type:CultureInfo|CultureInfo]].


== Inputs ==
== Inputs ==
Line 25: Line 25:


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 Also ==
* [https://learn.microsoft.com/en-us/dotnet/api/system.string.toupper?view=net-8.0#system-string-toupper Microsoft documentation for the <code>String.ToUpper() method</code>, which is used internally.]


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

Latest revision as of 20:24, 3 June 2024

To Upper
Character
*
Characters

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

Inputs

* (char)

The character to make uppercase.

Outputs

* (char)

The uppercase variant of the given character. Characters that do not have an uppercase 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