gpt4 book ai didi

java - 忽略Java中的大写和小写

转载 作者:搜寻专家 更新时间:2023-11-01 04:01:52 24 4
gpt4 key购买 nike

我想知道如何让用户输入的内容在我的方法中忽略大小写:

public static void findPatient() {
if (myPatientList.getNumPatients() == 0) {
System.out.println("No patient information is stored.");
}
else {
System.out.print("Enter part of the patient name: ");
String name = sc.next();
sc.nextLine();
System.out.print(myPatientList.showPatients(name));
}
}

最佳答案

使用 String#toLowerCase()String#equalsIgnoreCase() 方法

一些例子:

    String abc    = "Abc".toLowerCase();
boolean isAbc = "Abc".equalsIgnoreCase("ABC");

关于java - 忽略Java中的大写和小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26997164/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com