从python中的字符串中删除控制字符

从python中的字符串中删除控制字符,第1张

从python中的字符串中删除控制字符

Unipre中有 数百个
控制字符。如果您要清理来自Web或其他可能包含非ASCII字符的其他来源的数据,则需要Python的unipredata模块。该

unipredata.category(…)
函数返回任何字符的unipre类别代码(例如,控制字符,空格,字母等)。对于控制字符,类别始终以“
C”开头。

此代码段从字符串中删除所有控制字符。

import unipredatadef remove_control_characters(s):    return "".join(ch for ch in s if unipredata.category(ch)[0]!="C")

unipre类别的示例:

>>> from unipredata import category>>> category('r')      # carriage return --> Cc : control character'Cc'>>> category('')      # null character ---> Cc : control character'Cc'>>> category('t')      # tab --------------> Cc : control character'Cc'>>> category(' ')       # space ------------> Zs : separator, space'Zs'>>> category(u'u200A') # hair space -------> Zs : separator, space'Zs'>>> category(u'u200b') # zero width space -> Cf : control character, formatting'Cf'>>> category('A')       # letter "A" -------> Lu : letter, uppercase'Lu'>>> category(u'u4e21') # 両 ---------------> Lo : letter, other'Lo'>>> category(',')       # comma  -----------> Po : punctuation'Po'>>>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5651076.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存