mtp
mtp copied to clipboard
Multi-lingual Text Processing
Results
1
mtp issues
Sort by
recently updated
recently updated
newest added
The invisible characters are something important too =) From https://pastebin.com/1aR1ivaR ```python import unicodedata, re all_chars = (unichr(i) for i in xrange(0x110000)) control_chars = ''.join(c for c in all_chars if unicodedata.category(c)[0]...