Answers for "how to split a string based on two conditions java"

0

split with multiple condition in java

String text = "s: saturday, sunday, solar, selfie";
String[] words = text.split("[:,] ");
Posted by: Guest on June-23-2020
0

splitting text with several condition in java

Pattern pattern = Pattern.compile("(\w+)([<=>]+)(\w+)");
    Matcher matcher = pattern.matcher("var1>=ar2b");

    if(matcher.find()){
        System.out.println(matcher.group(1));
        System.out.println(matcher.group(2));
        System.out.println(matcher.group(3));
    }
Posted by: Guest on July-10-2020

Code answers related to "how to split a string based on two conditions java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language