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

◆ AddSpace()

void System.Text.RegularExpressions.RegexCharClass.AddSpace ( bool ecma,
bool negate )
inline

Definition at line 548 of file RegexCharClass.cs.

549 {
550 if (ecma)
551 {
552 AddSet(negate ? "\0\t\u000e !" : "\t\u000e !");
553 }
554 else
555 {
556 AddCategory(negate ? "ワ" : "d");
557 }
558 }

References System.Text.RegularExpressions.RegexCharClass.AddCategory(), and System.Text.RegularExpressions.RegexCharClass.AddSet().