1

これを入力した後にコードを実行すると

1 qwertyuiopasdfghjklzxcvbnm

意思

それでも、本来のように文字を置き換えるのではなく、意志を出力しますが、それはなぜですか?

public static void main(String[] args) 
{

    String input="";
    int cases= sc.nextInt();
    String al= sc.next();
    String upAl= al.toUpperCase();
    char [] upAlph = upAl.toCharArray();


    char[] alph = al.toCharArray();
    for(int i=0; i<cases; i++)
    {
        input=sc.next();

        input.replaceAll("a", ""+ alph[0]);
        input.replaceAll("b", ""+ alph[1]);
        input.replaceAll("c", ""+ alph[2]);
        input.replaceAll("d", ""+ alph[3]);
        input.replaceAll("e", ""+ alph[4]);
        input.replaceAll("f", ""+ alph[5]);
        input.replaceAll("g", ""+ alph[6]);
        input.replaceAll("h", ""+ alph[7]);
        input.replaceAll("i", ""+ alph[8]);
        input.replaceAll("j", ""+ alph[9]);
        input.replaceAll("k", ""+ alph[10]);
        input.replaceAll("l", ""+ alph[11]);
        input.replaceAll("m", ""+ alph[12]);
        input.replaceAll("n", ""+ alph[13]);
        input.replaceAll("o", ""+ alph[14]);
        input.replaceAll("p", ""+ alph[15]);
        input.replaceAll("q", ""+ alph[16]);
        input.replaceAll("r", ""+ alph[17]);
        input.replaceAll("s", ""+ alph[18]);
        input.replaceAll("t", ""+ alph[19]);
        input.replaceAll("u", ""+ alph[20]);
        input.replaceAll("v", ""+ alph[21]);
        input.replaceAll("w", ""+ alph[22]);
        input.replaceAll("x", ""+ alph[23]);
        input.replaceAll("y", ""+ alph[24]);
        input.replaceAll("z", ""+ alph[25]);
        input.replaceAll("A", upAlph[0]+"");
        input.replaceAll("B", upAlph[1]+"");
        input.replaceAll("C", upAlph[2]+"");
        input.replaceAll("D", upAlph[3]+"");
        input.replaceAll("E", upAlph[4]+"");
        input.replaceAll("F", upAlph[5]+"");
        input.replaceAll("G", upAlph[6]+"");
        input.replaceAll("H", upAlph[7]+"");
        input.replaceAll("I", upAlph[8]+"");
        input.replaceAll("J", upAlph[9]+"");
        input.replaceAll("K", upAlph[10]+"");
        input.replaceAll("L", upAlph[11]+"");
        input.replaceAll("M", upAlph[12]+"");
        input.replaceAll("N", upAlph[13]+"");
        input.replaceAll("O", upAlph[14]+"");
        input.replaceAll("P", upAlph[15]+"");
        input.replaceAll("Q", upAlph[16]+"");
        input.replaceAll("R", upAlph[17]+"");
        input.replaceAll("S", upAlph[18]+"");
        input.replaceAll("T", upAlph[19]+"");
        input.replaceAll("U", upAlph[20]+"");
        input.replaceAll("V", upAlph[21]+"");
        input.replaceAll("W", upAlph[22]+"");
        input.replaceAll("X", upAlph[23]+"");
        input.replaceAll("Y", upAlph[24]+"");
        input.replaceAll("Z", upAlph[25]+"");
        input.replaceAll("_", " ");
        pw.println(input);

    }
4

3 に答える 3

8

Strings不変です。inputの結果に割り当てreplaceAllます:

input = input.replaceAll("a", ""+ alph[0]);
...

余談ですが、正規表現が必要ない場合は、String#replaceの使用を検討してください。

于 2013-03-01T22:34:36.053 に答える
2

文字immutable列はJavaであり、作成後に文字列を変更することはできませんreplaceAll。元の文字列に結果を割り当てることを検討してください

  input = input.replaceAll("string", "string");

このメソッド replaceAllは、置換後に新しい文字列を返します。

文字列に値を追加しなくても+=、内部で別の文字列を作成します。StringBuilderしたがって、文字列を頻繁に変更する場合は、パフォーマンスを向上させるために使用することを検討してください。

于 2013-03-01T22:37:28.103 に答える
1

私は仕事を辞める前の金曜日までにこのメソッドをコーディングしていましたが、辞めなければなりませんでした。

とにかく、今日は終わりました。

public static String replaceStringChars(String input, String abc, String replacement, boolean ignoreCase) {
    abc = (ignoreCase ? abc.toLowerCase() : abc) + (ignoreCase ? abc.toUpperCase() : "") + "_";
    replacement = (ignoreCase ? replacement.toLowerCase() : replacement) + (ignoreCase ? replacement.toUpperCase() : "") + " ";
    input = input.replace(abc, replacement);
    StringBuilder newString = new StringBuilder(input);
    for (int a = 0; a < input.length(); a++) {
        char chr = input.charAt(a);
        int index = abc.indexOf(chr);
        if (index >= 0) {
            newString.setCharAt(a, replacement.charAt(index));
        }
    }
    return newString.toString();
}

それをテストする方法は?:

public static void main(String [] args)
{
    String input = "will_is_my_pastor";
    String abc = "abcdefghijklmnopqrstuvwxyz";
    String replacement = "qwertyuiopasdfghjklzxcvbnm";
    System.out.println(abc);
    System.out.println(replacement);
    System.out.println(replaceStringChars(input, abc, replacement, true));
}
于 2013-03-04T14:24:58.697 に答える