我需要将我的字符串拆分成一些指定的长度(10 个字符)。
下面是我的代码:
Pattern p = Pattern.compile(".{0,10}");
Matcher m = p.matcher("012345678901234567890123456");
List<String> emailStr = new ArrayList<String>();
while(m.find())
{
System.out.println(m.group());
}
至于我的要求,我将获得最多 3 个字符串。我想将这个“n”个字符串分配给单独的变量。我对此没有任何想法。请帮忙。