Answers for "how to apply condition on split function if . or not"

1

how to split properly if condition

public static void main1(String[] args) {

    if (args != null
        && args.length == 2
        && !args[0].equals(args[1])
        ) {
            System.out.println("Args are ok");
    }
}
Posted by: Guest on October-14-2020

Code answers related to "how to apply condition on split function if . or not"

Browse Popular Code Answers by Language