Home | History | Annotate | Download | only in syntax

Lines Matching full:ascii

24   [[:alpha:]]    ASCII character class
25 [[:^alpha:]] negated ASCII character class
71 \b at ASCII word boundary (\w on one side and \W, \A, or \z on the other)
72 \B not at ASCII word boundary
92 [:foo:] ASCII character class foo
101 [[:name:]] named ASCII class inside character class (== [:name:])
102 [^[:name:]] named ASCII class inside negated character class (== [:^name:])
106 Perl character classes (all ASCII-only):
114 ASCII character classes:
117 [[:ascii:]] ASCII (== [\x00-\x7F])