gpt4 book ai didi

java - 如何根据另一个字符串的未知长度创建一个新字符串?

转载 作者:行者123 更新时间:2023-11-30 07:05:06 26 4
gpt4 key购买 nike

我目前正在上计算机编程课,并且在为这个 2 人刽子手游戏“创建模板”方面处于死胡同。

  • 首先,person#1 被提示输入一个短语(包含所有小写字母)
  • 然后,我必须采用他们选择的任何短语并将其变成一个包含所有 ? 的模板。
  • 然后,当第 2 个人猜字母时,我必须“揭示”短语并将 ? 变成短语字母。

不过,我不能忘记将它变成模板。一个例子是:

人#1 的短语:“hello world”

期望的模板结果:“?????? ??????”

这是我目前所拥有的...我在 public static String createTemplate(String sPhrase) 遇到了麻烦

    import java.util.Scanner;

public class Program9
{
public static void main (String[] args)
{
Scanner scanner = new Scanner (System.in);
Scanner stdIn = new Scanner (System.in);

int cnt = 0; //counter is set to zero
String sPhrase;
boolean def;

System.out.print("Enter a phrase consisting of only lowercase letters and spaces: ");
sPhrase = scanner.nextLine(); //reads into variable set to Scanner.nextLine()


System.out.println("\n\n\nCommon Phrase");
System.out.println("--------------\n");

String template = createTemplate(sPhrase); //will run through "createTemplate" and show whatever on there.

do
{

char guess = getGuess(stdIn); //will run through "getGuess" and show whatever SOP and return from that. WORKS.

cnt = cnt + 1; //counts the guess

System.out.println("\n\n\nCommon Phrase");
System.out.println("--------------\n");

String updated = updateTemplate(template, sPhrase, guess); //runs throuhgh and prints updated template




} while (!exposedTemplate(sPhrase)); //will loop back if updated template still has ?'s



System.out.println("Good job! It took you " + cnt + " guesses!");
}
public static String createTemplate(String sPhrase)
{
String template = null;
String str;


sPhrase.substring(0, sPhrase.length()+1); //not sure if +1 needed.
sPhrase.equals(template);

//THIS IS WHERE IM HAVING PROBLEMS



}
public static char getGuess(Scanner stdIn)
{
//repeatedly prompts user for char response in range of 'a' to 'z'
String guess;

do
{
System.out.print("Enter a lowercase letter guess : ");
guess = stdIn.next();
} while (Character.isDigit(guess.charAt(0)));

char firstLetter = guess.charAt(0);
return firstLetter;
}

public static String changeCharAt(String str, int ind, char newChar)
{
return str.substring(0, ind) + newChar + str.substring(ind+1);
//freebie: returns copy of str with chars replaced

}
public static String updateTemplate(String template, String sPhrase, char guess)
{
//will have to include changeCharAt


}
public static boolean exposedTemplate(String template)
{
// returns true exactly when there are no more ?'s

}
}

最佳答案

一个简单的解决方案是:

public static String createTemplate(String sPhrase)
{
return sPhrase.replaceAll("[a-zA-Z]", "?");
}

String classreplaceAll 方法在 Java 中,用字符串替换与提供的正则表达式匹配的字符串的所有部分(在本例中为 ?)

学习正则表达式(称为正则表达式)可能不在本作业的范围内,但对所有计算机程序员来说都是一项非常有用的技能。在此示例中,我使用了正则表达式 [a-zA-Z],这意味着替换任何大写或小写字符,但是您也可以使用像 \\w 这样的字符类。

这里有一个关于 Java 正则表达式的优秀教程:https://docs.oracle.com/javase/tutorial/essential/regex/

关于java - 如何根据另一个字符串的未知长度创建一个新字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27097240/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com