Answers for "string split example"

13

split method in java

public class SplitExample2 { 
    public static void main(String args[]) 
    { 
        String str = "My name is Chaitanya";
        //regular expression is a whitespace here 
        String[] arr = str.split(" "); 
  
        for (String s : arr) 
            System.out.println(s); 
    } 
}
Posted by: Guest on May-23-2020
2

split on . in java

String textfile = "ReadMe.txt";
String filename = textfile.split(".")[0];
String extension = textfile.split(".")[1];
Posted by: Guest on October-15-2020
0

split string

String[] result = "this is a test".split("\\s");
     for (int x=0; x<result.length; x++)
         System.out.println(result[x]);
Posted by: Guest on June-11-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language