<tfoot id='TDSRJ'></tfoot>

<small id='TDSRJ'></small><noframes id='TDSRJ'>

    1. <legend id='TDSRJ'><style id='TDSRJ'><dir id='TDSRJ'><q id='TDSRJ'></q></dir></style></legend>

        • <bdo id='TDSRJ'></bdo><ul id='TDSRJ'></ul>
      1. <i id='TDSRJ'><tr id='TDSRJ'><dt id='TDSRJ'><q id='TDSRJ'><span id='TDSRJ'><b id='TDSRJ'><form id='TDSRJ'><ins id='TDSRJ'></ins><ul id='TDSRJ'></ul><sub id='TDSRJ'></sub></form><legend id='TDSRJ'></legend><bdo id='TDSRJ'><pre id='TDSRJ'><center id='TDSRJ'></center></pre></bdo></b><th id='TDSRJ'></th></span></q></dt></tr></i><div id='TDSRJ'><tfoot id='TDSRJ'></tfoot><dl id='TDSRJ'><fieldset id='TDSRJ'></fieldset></dl></div>

        Java:如何将字符串拆分为多个字符?

        时间:2023-10-14

          • <bdo id='bVywp'></bdo><ul id='bVywp'></ul>
            <tfoot id='bVywp'></tfoot>
          • <legend id='bVywp'><style id='bVywp'><dir id='bVywp'><q id='bVywp'></q></dir></style></legend>

              <tbody id='bVywp'></tbody>
            • <small id='bVywp'></small><noframes id='bVywp'>

              1. <i id='bVywp'><tr id='bVywp'><dt id='bVywp'><q id='bVywp'><span id='bVywp'><b id='bVywp'><form id='bVywp'><ins id='bVywp'></ins><ul id='bVywp'></ul><sub id='bVywp'></sub></form><legend id='bVywp'></legend><bdo id='bVywp'><pre id='bVywp'><center id='bVywp'></center></pre></bdo></b><th id='bVywp'></th></span></q></dt></tr></i><div id='bVywp'><tfoot id='bVywp'></tfoot><dl id='bVywp'><fieldset id='bVywp'></fieldset></dl></div>

                  本文介绍了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 的 L 号(长)规范 下一篇:是否有一种有效的算法用于有限数量的整数分区?

                  相关文章

                • <small id='w8jHM'></small><noframes id='w8jHM'>

                      <bdo id='w8jHM'></bdo><ul id='w8jHM'></ul>
                      <i id='w8jHM'><tr id='w8jHM'><dt id='w8jHM'><q id='w8jHM'><span id='w8jHM'><b id='w8jHM'><form id='w8jHM'><ins id='w8jHM'></ins><ul id='w8jHM'></ul><sub id='w8jHM'></sub></form><legend id='w8jHM'></legend><bdo id='w8jHM'><pre id='w8jHM'><center id='w8jHM'></center></pre></bdo></b><th id='w8jHM'></th></span></q></dt></tr></i><div id='w8jHM'><tfoot id='w8jHM'></tfoot><dl id='w8jHM'><fieldset id='w8jHM'></fieldset></dl></div>

                    1. <legend id='w8jHM'><style id='w8jHM'><dir id='w8jHM'><q id='w8jHM'></q></dir></style></legend>
                      <tfoot id='w8jHM'></tfoot>