作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够在 IDE 的控制台中输入以下内容:
reverse("a b c d")
但目前我只能输入
a b c d
我该如何实现这一目标?我尝试过使用 args[0] 但出现错误。
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String sentence = sc.nextLine();
reverse(sentence);
}
public static void reverse(String s){
String [] stringArray;
stringArray = s.split(" ");
int counter = stringArray.length;
for (String word : stringArray) {
counter -=1;
System.out.print(stringArray[counter]+" ");
}
}
最佳答案
要解决您的问题,您可以使用一些正则表达式来获取 reverse("get this")
中的值:
s = s.replaceAll("reverse\\(\"(.*?)\"\\)", "$1");
第二个而不是那个循环,你可以使用StringBuilder::reverse
来反转你的字符串:
public static void reverse(String s) {
s = s.replaceAll("reverse\\(\"(.*?)\"\\)", "$1");
System.out.println(s);
System.out.println(new StringBuilder(s).reverse().toString());
}
输入
reverse("a b c d")
输出
d c b a
<小时/>
编辑
根据您的评论:
When I run the application. It will ask the user for an input. If the user enters:
reverse("I am an apple")
It will then output:apple an am I
在这种情况下,您必须检查方法的名称,因此如果字符串以名称 reverse
开头,则调用反向方法,例如:
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String sentence = sc.nextLine();
if (sentence.startsWith("reverse")) {
reverse(sentence);
}
}
public static void reverse(String s) {
s = s.replaceAll("reverse\\(\"(.*?)\"\\)", "$1");
List<String> stringArray = Arrays.asList(s.split("\\s+"));
Collections.reverse(stringArray);
System.out.println(stringArray);
}
关于Java - 如何将用户输入作为方法调用执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46830524/
我是一名优秀的程序员,十分优秀!