gpt4 book ai didi

java - 拆分仅包含字母的字符串

转载 作者:行者123 更新时间:2023-12-03 07:06:27 25 4
gpt4 key购买 nike

是否有任何简单的方法来拆分仅包含字母(无空格)的排序字符串。

例如,如果我有这个字符串:

  string str ="aaasssdeettyy";

我需要将此字符串拆分为子字符串:

string res = "aaa";
string res = "sss";
string res = "d";
string res = "ee";
string res = "tt";
string res = "yy";

有没有办法使用 split() 命令和正则表达式来实现它?

最佳答案

试试这个:\1 匹配与第一组 (.) 匹配的相同文本

Pattern compile = Pattern.compile("(.)\\1+");
Matcher matcher = compile.matcher("aaabbbcdddee");
while (matcher.find())
System.out.println(matcher.group());

关于java - 拆分仅包含字母的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42846263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com