【发布时间】:2021-04-09 17:02:33
【问题描述】:
import java.util.Scanner;
public class Grammar
{
public static void main(String[] args)
{
// Ask the user to enter a sentence that uses the word 2 instead of to.
String theText= "";
System.out.println("Enter a sentence that uses the word 2 instead of to");
Scanner input = new Scanner(System.in);
theText = input.nextLine();
// Call the method useProperGrammar to process the string according to
// the directions.
System.out.println(useProperGrammar(theText));
}
public static String useProperGrammar(String theText)
{
String newString="";
int count = 0;
for(int i = 0; i < theText.length(); i++)
{
count++;
if (theText.contains("2"))
{
String character = theText.substring(i, i+1);
newString= theText.replace("2","to");
System.out.println("Fixed "+ count +" grammatical errors:");
return newString;
}
else
{
System.out.println("Fixed 0 grammatical errors");
return theText;
}
}
return newString;
}
}
基本上,我正在尝试计算用户输入“2”并被替换为的次数 'to' 但无论我输入多少个 2,它总是输出 'Fixed 1 grammatical error' 或('fixed 0 grammatical errors' 如果没有输入 '2')。
【问题讨论】:
-
String.replace 用指定的文字替换替换与文字目标序列匹配的字符串的每个子字符串——因此
replace仅被调用一次,所有2都被替换为to.
标签: java count iteration counter