在 Java 中使用 startsWith 和 endsWith 时如何忽略大小写?

新手上路,请多包涵

这是我的代码:

 public static void rightSel(Scanner scanner,char t)
{
  /*if (!stopping)*/System.out.print(": ");
    if (scanner.hasNextLine())
    {
     String orInput = scanner.nextLine;
        if (orInput.equalsIgnoreCase("help")
        {
            System.out.println("The following commands are available:");
            System.out.println("    'help'      : displays this menu");
            System.out.println("    'stop'      : stops the program");
            System.out.println("    'topleft'   : makes right triangle alligned left and to the top");
            System.out.println("    'topright'  : makes right triangle alligned right and to the top");
            System.out.println("    'botright'  : makes right triangle alligned right and to the bottom");
            System.out.println("    'botleft'   : makes right triangle alligned left and to the bottom");
        System.out.println("To continue, enter one of the above commands.");
     }//help menu
     else if (orInput.equalsIgnoreCase("stop")
     {
        System.out.println("Stopping the program...");
            stopping    = true;
     }//stop command
     else
     {
        String rawInput = orInput;
        String cutInput = rawInput.trim();
        if (

我想允许用户在如何输入命令方面有一些回旋余地,例如:右上角、右上角、TOPRIGHT、左上角等。为此,我正在尝试,最后 if ( ,检查 cutInput 是否以“顶部”或“向上”开头,并检查 cutInput 是否以“左”或“右”结尾不区分大小写。这是可能吗?

这样做的最终目标是允许用户在一行输入中选择三角形的四个方向之一。这是我能想到的最好的方法,但我对一般的编程还是很陌生,可能会使事情复杂化。如果我是,并且有更简单的方法,请告诉我。

原文由 Matao Gearsky 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.8k
2 个回答

像这样:

 aString.toUpperCase().startsWith("SOMETHING");
aString.toUpperCase().endsWith("SOMETHING");

原文由 Óscar López 发布,翻译遵循 CC BY-SA 3.0 许可协议

接受的答案是错误的。如果您查看 String.equalsIgnoreCase() 的实现,您会发现在最终返回 false 之前,您需要比较字符串 小写和大写版本。

这是我自己的版本,基于 http://www.java2s.com/Code/Java/Data-Type/CaseinsensitivecheckifaStringstartswithaspecifiedprefix.htm

 /**
 * String helper functions.
 *
 * @author Gili Tzabari
 */
public final class Strings
{
    /**
     * @param str    a String
     * @param prefix a prefix
     * @return true if {@code start} starts with {@code prefix}, disregarding case sensitivity
     */
    public static boolean startsWithIgnoreCase(String str, String prefix)
    {
        return str.regionMatches(true, 0, prefix, 0, prefix.length());
    }

    public static boolean endsWithIgnoreCase(String str, String suffix)
    {
        int suffixLength = suffix.length();
        return str.regionMatches(true, str.length() - suffixLength, suffix, 0, suffixLength);
    }

    /**
     * Prevent construction.
     */
    private Strings()
    {
    }
}

原文由 Gili 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题