Java: How to split a string by a number of characters?(Java:如何将字符串拆分为多个字符?)
问题描述
我试图在线搜索以解决这个问题,但我没有找到任何东西.
I tried to search online to solve this question but I didn't found anything.
我写了以下抽象代码来解释我在问什么:
I wrote the following abstract code to explain what I'm asking:
String text = "how are you?";
String[] textArray= text.splitByNumber(4); //this method is what I'm asking
textArray[0]; //it contains "how "
textArray[1]; //it contains "are "
textArray[2]; //it contains "you?"
splitByNumber 方法将字符串text"每 4 个字符拆分一次.我怎样才能创建这个方法??
The method splitByNumber splits the string "text" every 4 characters. How I can create this method??
非常感谢
推荐答案
我认为他想要的是将一个字符串拆分为大小为 4 的子字符串.然后我会在循环中这样做:
I think that what he wants is to have a string split into substrings of size 4. Then I would do this in a loop:
List<String> strings = new ArrayList<String>();
int index = 0;
while (index < text.length()) {
strings.add(text.substring(index, Math.min(index + 4,text.length())));
index += 4;
}
这篇关于Java:如何将字符串拆分为多个字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java:如何将字符串拆分为多个字符?
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01