web-dev-qa-db-ja.com

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 (

右上、右上、上右、左上など、コマンドの入力方法についてユーザーにある程度の余裕を持たせたいと思います。そのために、最後にif (、大文字と小文字を区別せずに、cutInputが「top」または「up」で始まり、cutInputが「left」または「right」で終わるかどうかを確認します。これはまったく可能ですか?

この最終目標は、ユーザーが1行の入力で、三角形の4つの方向のいずれかを選択できるようにすることです。これは私が考えうる最善の方法でしたが、私はプログラミング全般にまだまだ慣れておらず、複雑なことをしているかもしれません。もし私がそうで、もっと簡単な方法があるなら、私に知らせてください。

27
Matao Gearsky

このような:

aString.toUpperCase().startsWith("SOMETHING");
aString.toUpperCase().endsWith("SOMETHING");
45
Óscar López

受け入れられた答えは間違っています。 String.equalsIgnoreCase()の実装を見ると、文字列のbothを比較する必要があることがわかります。最終的に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()
    {
    }
}
22
Gili

私は本の中でエクササイズをしていましたが、エクササイズでは、「文字列の終わりが「ger」で終わるかどうかをテストするメソッドを作成しました。フレーズ「ger」の大文字と小文字の組み合わせをテストする場所にコードを記述します。

そのため、基本的に、文字列内のフレーズをテストして大文字と小文字を無視するように求められたため、「ger」の文字が大文字か小文字かは関係ありません。私の解決策は次のとおりです。

package exercises;

import javax.swing.JOptionPane;

public class exercises
{
    public static void main(String[] args)
    {
        String input, message = "enter a string. It will"
                                + " be tested to see if it "
                                + "ends with 'ger' at the end.";



    input = JOptionPane.showInputDialog(message);

    boolean yesNo = ends(input);

    if(yesNo)
        JOptionPane.showMessageDialog(null, "yes, \"ger\" is there");
    else
        JOptionPane.showMessageDialog(null, "\"ger\" is not there");
}

public static boolean ends(String str)
{
    String input = str.toLowerCase();

    if(input.endsWith("ger"))
        return true;
    else 
        return false;
}

}

コードからわかるように、ユーザーが入力する文字列をすべて小文字に変換しました。私はそれを否定したので、すべての文字が大文字と小文字を交互に使用するかどうかは関係ありません。

1