标签: python python-3.x unicode couchdb icu
我需要能够在python的ICU collation algorithm中找到给定字符的紧跟字符。
我的用例是我正在使用该算法进行排序的无SQL数据库中查询键,并且我需要所有以一组字符开头的键。
我正在寻找的是一个函数:
def nextchar(x): return x[:-1]+next_in_icu(x[-1:])