Answers for "switch ignore case java"

0

switch case less than java

switch (lessThan)
	{
    
    //Less than cannot techinically be added so we use the numbers less than those numeberss
		case 1:
		case 2:
		case 3:
		System.out.println("This name has 3 or less characters");
		break;

		case 4:
		System.out.println("This name has 4 characters");
		break;
    
	}
Posted by: Guest on November-03-2020
-2

how to use ignore case in java

You have to use the String method .toLowerCase() or .toUpperCase() on both the input and the string you are trying to match it with.

Example:

public static void findPatient() {
    System.out.print("Enter part of the patient name: ");
    String name = sc.nextLine();

    System.out.print(myPatientList.showPatients(name));
}

//the other class
ArrayList<String> patientList;

public void showPatients(String name) {
    boolean match = false;

    for(String matchingname : patientList) {
        if (matchingname.toLowerCase().contains(name.toLowerCase())) {
            match = true;
        }
    }
}
Posted by: Guest on March-20-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language