Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Java 中有一个注册过程。我想确保使用的名称都在 unicode 3.2 中。此 unicode 要求适用于我系统的另一部分,它不在 java 中。
Java 是否有一种简单的方法来验证 unicode 版本的字符串?我似乎无法从一些粗略的检查中找到任何东西。
谢谢
我会阅读这个UCD文件并从第一列构建一个 BitSet。这将是测试字符串中每个代码点的快速方法。