将unicode字符串拆分为字符串列表
如何将包含代理对字符和普通字符的 unicode 字符串拆分为一个List<String>字符?
(String需要存储由两个组成的代理对字符char)
回答
尝试这个。
String s = "ac";
List<String> result = List.of(s.split("(?<=.)"));
for (String e : result)
System.out.println(e + " : length=" + e.length());
输出:
: length=2
a : length=1
: length=2
c : length=1
: length=2
代码点
或者,使用代码点整数流。
List<String> result =
s
.codePoints() // Produce a `IntStream` of code point numbers.
.mapToObj(Character::toString) // Produce a `String` containing one or two java chars for each code point in the stream.
.collect(Collectors.toList());
查看此代码在 IdeOne.com 上实时运行。
要捕获代码点,请使用上述代码的这种变体。
String s = "ac";
List<String> result = List.of(s.split("(?<=.)"));
for (String e : result)
System.out.println(e + " : length=" + e.length());
运行时:
codePointNumbers.toString(): [128522, 97, 128102, 99, 128522]