如何获得Python中组合Unicode字符串的“可见”长度?

如何获得Python中组合Unicode字符串的“可见”长度?,第1张

如何获得Python中组合Unicode字符串的“可见”长度

unipredata
模块具有
combining
可用于确定单个字符是否为组合字符的功能。如果返回
0
,则可以将该字符视为非组合字符。

import unipredatalen(u''.join(ch for ch in u'Au0332u0305BC' if unipredata.combining(ch) == 0))

或者,稍微简单一点:

sum(1 for ch in u'Au0332u0305BC' if unipredata.combining(ch) == 0)


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存