Case-insensitive UTF-8 string collation for SQLite (C/C++)

前端 未结 6 797
一个人的身影
一个人的身影 2021-02-09 04:58

I am looking for a method to compare and sort UTF-8 strings in C++ in a case-insensitive manner to use it in a custom collation function in SQLite.

  1. The method shou
6条回答
  •  时光说笑
    2021-02-09 05:16

    I believe you will need to roll your own or use an third party library. I recommend a third party library because there are a lot of rules that need to be followed to get true international support - best to let someone who is an expert deal with them.

提交回复
热议问题