IsECMAWordChar() static private method

static private IsECMAWordChar ( char ch ) : bool
ch char
return bool
コード例 #1
0
ファイル: RegexRunner.cs プロジェクト: was263/corefx
 protected bool IsECMABoundary(int index, int startpos, int endpos)
 {
     return((index > startpos && RegexCharClass.IsECMAWordChar(_runtext[index - 1])) !=
            (index < endpos && RegexCharClass.IsECMAWordChar(_runtext[index])));
 }