IsECMAWordChar() static private method

static private IsECMAWordChar ( char ch ) : bool
ch char
return bool
Esempio n. 1
0
 protected bool IsECMABoundary(int index, int startpos, int endpos)
 {
     return((index > startpos && RegexCharClass.IsECMAWordChar(_runtext[index - 1])) !=
            (index < endpos && RegexCharClass.IsECMAWordChar(_runtext[index])));
 }