0

我有此代码用于将降价字符串转换为 html:

public static String convert(String str) {
    if (str.equals("# "))
        return " ";

    if (str.matches("#+.+")) {
        int n = str.length() - str.replaceFirst("#+", "").length();
        return "<h" + n + ">" + str.substring(n) + "<h" + n + ">";
    }

    return str;
}

我想知道的是如何让这个类从键盘输入中获取它的字符串?

4

2 回答 2

2

你可以使用Scanner.nextLine()

String stringToConvert = new Scanner(System.in).nextLine();
System.out.println("Converted string is: " + convert(stringToConvert));
于 2012-10-21T21:40:08.183 回答
0

只是为了简单起见,您可以通过Console.readLine()

于 2012-10-21T21:36:01.003 回答