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

◆ AddWord()

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

Definition at line 536 of file RegexCharClass.cs.

537 {
538 if (ecma)
539 {
540 AddSet(negate ? "\00:A[_`a{İı" : "0:A[_`a{İı");
541 }
542 else
543 {
544 AddCategory(negate ? "\0\ufffe\ufffb\ufffd\uffff\ufffa\ufff7■\0" : "\0\u0002\u0004\u0005\u0003\u0001\u0006\t\u0013\0");
545 }
546 }

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