Home | History | Annotate | Download | only in shaping

Lines Matching refs:re

3 import sys, os, re, difflib, unicodedata, errno, cgi
69 diff_regex = re.compile ('([a-za-z0-9_]*)([^a-za-z0-9_]?)')
412 s = re.sub (r"0[xX]", " ", s)
413 s = re.sub (r"[<+>,;&#\\xXuU\n ]", " ", s)
440 s = re.sub (".* LETTER ", "", s)
441 s = re.sub (".* VOWEL SIGN (.*)", r"\1-MATRA", s)
442 s = re.sub (".* SIGN ", "", s)
443 s = re.sub (".* COMBINING ", "", s)
444 if re.match (".* VIRAMA", s):
452 s = re.sub (r"[<+>\\uU]", " ", s)
453 s = re.sub (r"0[xX]", " ", s)
454 s = [unichr (int (x, 16)) for x in re.split ('[, \n]', s) if len (x)]