4

我有一个字符串1122333344555566778888 ,我需要对其进行子串化,结果得到[11, 22, 3333, 44, 5555, 66, 77, 8888] 是否可以以一种漂亮的方式完成它,或者我需要对其进行硬编码和八次使用string.substring(beginning, ending)函数,然后放入array

编辑:字符串不仅可以包含重复的数字。AB CG HERD KJ 98HQ 0K 1E OOQW它也是例子!

4

7 回答 7

4

使用模式:((\d)\2*)

String input = "1122333344555566778888";
Pattern p = Pattern.compile("((\\d)\\2*)");
Matcher m = p.matcher(input);
while (m.find()) {
    System.out.println("Found " + m.group(1));
}

产生:

11
22
3333
44
5555
66
77
8888

编辑:如果它的数字以及空格和字母使用该模式(([\d\w\s])\2*)

于 2012-11-17T12:36:25.037 回答
3

您可以使用重复字符的正则表达式:

String input = "1122333344555566778888";
String regex = "(\\w)\\1+";

Matcher m = Pattern.compile(regex).matcher(input);
String[] substrings = new String[input.length()];

int index = 0;

while (m.find())
    substrings[index++] = m.group();

for (int i = 0; i < index; i++)
    System.out.println(substrings[i]);

输出:

11
22
3333
44
5555
66
77
8888

重要的提示:

substrings数组包含空条目,因为它的长度等于输入字符串的长度。如果您的字符串包含不重复的连续字符,则此数组可能没有空条目。敬请关注substringsNullPointerException

于 2012-11-17T12:34:24.430 回答
0

此字符串中没有分隔符可以使用 .split(),如果您想要的子字符串之间有分隔符,例如 11-22-3333- ... 等,它将很容易使用

String[] splits = asseltClasses.split("-");
于 2012-11-17T12:34:48.300 回答
0

基于 BlueBullet 的...

import java.util.regex.*;
import java.util.*;
public class MyTest {

    public static void main(String[] args) {

        String input = "1122333344555566778888";
        String regex = "(\\w)\\1+";

        Matcher m = Pattern.compile(regex).matcher(input);

        List<String> l = new ArrayList<String>();
        while (m.find()) l.add(m.group());

        System.out.println(Arrays.toString(l.toArray()));
    }   
}

输出:

[11, 22, 3333, 44, 5555, 66, 77, 8888]
于 2012-11-17T12:51:16.023 回答
0

这够美吗?这只是一条线...

String parts = input.replaceAll("(.)(?!\\1)", "$1\0").split("\0");

这是一个测试:

public static void main(String[] args) {
    String input = "1122333344555566778888";
    String[] parts = input.replaceAll("(.)(?!\\1)", "$1\0").split("\0");
    System.out.println(Arrays.toString(parts));
}

输出:

[11, 22, 3333, 44, 5555, 66, 77, 8888]

请注意,此解决方案有一个非常小的问题 -$1调用后的字符replaceAll()不能包含在输入中。我选择了空字符'\0'(即十六进制零)是相当安全的。

于 2012-11-17T13:25:36.657 回答
0

这就是我要做的:给定一个未排序的字符串“ABCABCABC”,您可以通过将其转换为 Char[] 数组来对其进行排序,然后使用 Arrays.sort() 将其转换为 AAABBBCCC。

    public String[] sortThis(String inputData) {
    String input = "ABCABCABC"; //make this whatever you want (or set to inputData)
    String[] temp = new String[input.length()];
    for (int i = 0; i < input.length();i++) //initialize the array, or it prints "null"
        temp[i] = "";
    int index = 0;
    char[] info = input.toCharArray();
    Arrays.sort(info);

    for (int i = 0; i < input.length(); i++) { // fill the temp array
        temp[index] += info[i];
        if(i+1 < input.length())
            if(i < input.length() && info[i] != info[i+1])
                index++;
    }

    String[] answer = new String[index+1]; 
    for(int i = 0; i < index+1; i++) // shorten the array
        answer[i] = temp[i];

    return answer;
    }

输出:

    [AAA, BBB, CCC]
于 2012-11-17T13:30:58.093 回答
0

也许你想用这个:

var str="1122333344555566778888"; //whatever
b=0;outpt="";
while(b<=18){
if(b==4|b==10|b==18){e=4;p=4}else{e=2;p=2}
outpt+=str.substr(b,e)+", ";b+=p;}
alert(outpt);

输出:

11, 22, 3333, 44, 5555, 66, 77, 8888, 
于 2012-11-17T14:27:37.150 回答