m fixup |
m YoshBot moved page ProtoFlux:Is Punctuation to ProtoFlux:IsPunctuation: Automated: removing spaces from ProtoFlux namespace |
||
(One intermediate revision by one other user not shown) | |||
Line 12: | Line 12: | ||
|}} | |}} | ||
The | The '''Is Punctuation''' node takes in a character literal and returns if that character is a punctuation character. | ||
== Inputs == | == Inputs == | ||
Line 25: | Line 25: | ||
== See Also == | == See Also == | ||
* [https://learn.microsoft.com/en-us/dotnet/api/system.char.ispunctuation Microsoft documentation of the <code>Char.IsPunctuation</code> method]. | * [https://learn.microsoft.com/en-us/dotnet/api/system.char.ispunctuation#system-char-ispunctuation(system-char) Microsoft documentation of the <code>Char.IsPunctuation(Char)</code> method]. | ||
[[Category:ProtoFlux:Strings:Characters]] | [[Category:ProtoFlux:Strings:Characters]] |
Latest revision as of 00:25, 21 August 2025
Is Punctuation
Characters
The Is Punctuation node takes in a character literal and returns if that character is a punctuation character.
Inputs
Character (char)
The character literal to check.
Outputs
* (bool)
Returns true
if Character
is a punctuation character, false
otherwise. Punctuation characters recognized by this node are given the Unicode delegation Pc
, Pd
, Ps
, Pe
, Pi
, Pf
, or Po
.