11 references to IsWordChar
System (11)
regex\system\text\regularexpressions\RegexParser.cs (9)
734
else if (RegexCharClass.
IsWordChar
(ch)) {
768
else if (RegexCharClass.
IsWordChar
(ch)) {
816
else if (RegexCharClass.
IsWordChar
(ch)) {
1073
else if (angled && RegexCharClass.
IsWordChar
(ch)) {
1156
else if (angled && RegexCharClass.
IsWordChar
(ch)) {
1212
if (!RegexCharClass.
IsWordChar
(MoveRightGetChar())) {
1414
if (!UseOptionE() && RegexCharClass.
IsWordChar
(ch))
1435
if (!(RegexCharClass.
IsWordChar
(ch) || ch == '-')) {
1560
if (ch != '0' && RegexCharClass.
IsWordChar
(ch)) {
regex\system\text\regularexpressions\RegexRunner.cs (2)
374
return (index > startpos && RegexCharClass.
IsWordChar
(runtext [index - 1])) !=
375
(index < endpos && RegexCharClass.
IsWordChar
(runtext [index]));