Answers for "splitting text with several condition in java"

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
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 October-17-2021

Code answers related to "splitting text with several condition in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language