提问人:theworld 提问时间:6/21/2022 更新时间:6/22/2022 访问量:36
如何使用 Scanner.useDlimiter 仅读取某件事
How can I use Scanner.useDlimiter to read a certain thing only
问:
我试图只阅读剪辑中即将出现的内容,但我正在努力寻找如何或任何示例来提供帮助。我正在尝试这段代码,但它只读取之前的内容,如果我只从 run(.
public static void main (String[] args) {
Scanner s = new Scanner(System.in).useDelimiter("run\\W");
// System.out.println(s.next());
System.out.println(s.next());
// don't forget to close the scanner!!
s.close();
}
}
答:
0赞
Lastun
6/22/2022
#1
试试这个,看看是否有帮助:
.useDelimiter("run\\(|\\)");
评论
System.in
s.next()