Answers for "split into array"

0

javascript split array

Array.prototype.split=function(ifs){return this.join("").split(ifs)}
let myArray = ["#", "#", "$", "#", "#", "$", "#"]
console.log(myArray.split("$")); // ["##","##","#"]
Posted by: Guest on June-15-2022
-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