本文介绍了获取“实际"Unicode 字符中的字符串长度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
给定一个像✮
"这样的字符(\xe2\x9c\xae
),例如,可以是其他像Σ
", "д
" or "Λ
") 我想找到字符在屏幕上打印时的实际"长度
given a character like "✮
" (\xe2\x9c\xae
), for example, can be others like "Σ
", "д
" or "Λ
") I want to find the "actual" length that character takes when printed onscreen
例如
len("✮")
len("\xe2\x9c\xae")
都返回3,但应该是1
推荐答案
你可以这样试试:
unicodedata.normalize('NFC', u'✮')
len(u"✮")
UTF-8 是一种 unicode 编码,它使用多个字节来表示特殊字符.检查 unicodedata.normalize()
UTF-8 is an unicode encoding which uses more than one byte for special characters. Check unicodedata.normalize()
这篇关于获取“实际"Unicode 字符中的字符串长度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!