Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsECMAWordChar()

static bool System.Text.RegularExpressions.RegexCharClass.IsECMAWordChar ( char ch)
inlinestatic

Definition at line 835 of file RegexCharClass.cs.

836 {
837 if (((uint)(ch - 65) & -33) >= 26 && (uint)(ch - 48) >= 10u && ch != '_')
838 {
839 return ch == 'İ';
840 }
841 return true;
842 }

References System.ch.

Referenced by System.Text.RegularExpressions.RegexNode.CanBeMadeAtomic(), and System.Text.RegularExpressions.RegexRunner.IsECMABoundary().