扫描文本并在匹配时替换

时间:2013-04-01 17:48:56

标签: java android if-statement for-loop

你能告诉我下面的for循环有什么问题吗?我希望程序扫描文本中的所有单词并检查它们 - 如果发现它与一组单词中的一个匹配则替换它。例如,如果文本中的句子是“nona chan”,我希望它逐字扫描,如果找到单词'nona',则替换为'good',然后继续下一个单词。

package com.example.split;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        final EditText te1 = (EditText) findViewById(R.id.t1);
        final EditText te2 = (EditText) findViewById(R.id.t2);

        final Button b = (Button) findViewById(R.id.b1);
        b.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

                //imva.setImageResource(R.id.b1);

                String t = te1.getText().toString();
                String[] t1 = t.split(" ");
                for (int i = 0; i <= t1.length; i++) {

                    do {
                        if (t1[i].equals("nona")) {
                            String v1 = t1[i];
                            String v2 = " good  ";
                            String a = v1.replace(v1, v2);
                            te2.setText(a);
                        } else if (t1[i].equals("chan")) {
                            String v1 = t1[i];
                            String v3 = " job  ";
                            String a = v1.replace(v1, v3);
                            te2.setText(a);
                        }
                    } while (te1.length() != 0);
                }

            }
        });

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}

2 个答案:

答案 0 :(得分:2)

你超过了阵列界限。取代

for (int i = 0 ; i<= t1.length ; i++)

for (int i = 0 ; i < t1.length ; i++)

答案 1 :(得分:0)

除了@Reimeus的答案和@ Pragnani的评论之外,你的for()循环超过数组长度的正确性是正确的......

删除do/while循环,因为它将始终无限循环并挂起您的应用! 然后用它的内容替换循环。


此外,这一行没有做任何事情:

String a =  v1.replace(v1, v2);

只需将v2安装到a,因此可以将其替换为:

String a = v2;