Answers for "split string by length"

0

java split string by length

String[] strings = "Thequickbrownfoxjumps".split("(?<=\\G.{4})"); // split all 4 chars
String[] strings = "Thequickbrownfoxjumps".split("(?<=\\G.{100})"); // this would be all 100 chars 
// -> ['Theq', 'uick', 'brow', 'nfox', 'jump', 's']
Posted by: Guest on September-04-2021
-1

Split string into a string array

public class MyClass {
    public static void main(String args[]) {
        String data = "1,2,3,,5,6,,";
        String[] split = data.split(",", -1);
        for (int i=0; i<split.length; i++)
            System.out.println(split[i]);
            
        System.out.println("Done");
        
    }
}
Posted by: Guest on February-22-2022

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language