我正在编写一个翻译应用程序并遇到了一个小问题。例如:
当我在type
中Hond
时,我希望output
为Dog
,当type
中的Honderd
时,我希望output
1}}为Hundred
。但是当我输入Hond时,我得到Dogerd
。所以它只需要翻译Hond并添加剩下的字母。我在我的代码中将Honderd置于Hond之上,想出了一个解决方案。但是这个问题必须有另一个解决方案吗?这是代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mType = (EditText) findViewById(R.id.typeWordTxt);
mSearch = (Button) findViewById(R.id.find8tn);
mResults = (TextView) findViewById(R.id.resultsTxt);
mSearch.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String resultaat = mType.getText().toString().toLowerCase();
resultaat = resultaat
//Getallen
.replaceAll("honderd", "hundred")
.replaceAll("hond", "dog")
mResults.setText(resultaat);
感谢您的帮助!
答案 0 :(得分:2)
您可以使用\\b
字边界将您的单词隔离为单个单词,而不是将其与其他单词匹配
\\bhonderd\\b
和\\bhond\\b
String s ="Honderd Honderd Hond".toLowerCase();
System.out.println(s
.replaceAll("\\bhond\\b", "dog")
.replaceAll("\\bhonderd\\b", "hundred"));
输出:
hundred hundred dog
演示
const honderd_rep = /\bhonderd\b/g;
const hond_rep = /\bhond\b/g;
const str = 'honderd honderd hond';
const result = str.replace(hond_rep,'dog').replace(honderd_rep, 'hundred');
console.log(result);