ProtoFlux:IsSymbol: Difference between revisions

From Resonite Wiki
m fixup
m YoshBot moved page ProtoFlux:Is Symbol to ProtoFlux:IsSymbol: Automated: removing spaces from ProtoFlux namespace
 
(2 intermediate revisions by one other user not shown)
Line 12: Line 12:
|}}
|}}


The <code>Is Symbol</code> node takes in a character literal and returns if that character is a symbol as defined by Unicode.
The '''Is Symbol''' node takes in a character literal and returns if that character is a symbol as defined by Unicode.


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


== See Also ==
== See Also ==
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.issymbol Microsoft Documentation about the <code>Char.IsSymbol</code> method].
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.issymbol#system-char-issymbol(system-char) Microsoft Documentation about the <code>Char.IsSymbol(Char)</code> method].


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

Latest revision as of 00:25, 21 August 2025

Is Symbol
Character
*
Characters

The Is Symbol node takes in a character literal and returns if that character is a symbol as defined by Unicode.

Inputs

Character (char)

The character literal to check.

Outputs

* (bool)

Returns true if Character is a symbol, false otherwise. Symbol characters recognized by this node are given the unicode delegation Sm, Sc, Sk, or So.

See Also