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

◆ IsMetachar()

static bool System.Text.RegularExpressions.RegexParser.IsMetachar ( char ch)
inlinestaticprivate

Definition at line 1832 of file RegexParser.cs.

1833 {
1834 if (ch <= '|')
1835 {
1836 return Category[ch] >= 1;
1837 }
1838 return false;
1839 }
static ReadOnlySpan< byte > Category

References System.Text.RegularExpressions.RegexParser.Category, and System.ch.

Referenced by System.Text.RegularExpressions.RegexParser.Escape(), and System.Text.RegularExpressions.RegexParser.EscapeImpl().