plugin.py 文件源码

python
阅读 27 收藏 0 点赞 0 评论 0

项目:haros_plugins 作者: git-afsantos 项目源码 文件源码
def GetLineWidth(line):
  """Determines the width of the line in column positions.

  Args:
    line: A string, which may be a Unicode string.

  Returns:
    The width of the line in column positions, accounting for Unicode
    combining characters and wide characters.
  """
  if isinstance(line, unicode):
    width = 0
    for uc in unicodedata.normalize('NFC', line):
      if unicodedata.east_asian_width(uc) in ('W', 'F'):
        width += 2
      elif not unicodedata.combining(uc):
        width += 1
    return width
  else:
    return len(line)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号