我正在对 findInLine 对象进行测试,但它不起作用,我不知道为什么。这是代码:
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("enter string: ");
String a = null;
String pattern ="(,)";
if (input.findInLine(pattern) != null){
a = input.nextLine();
}
System.out.println(a);
enter string: (9,9) <---------- that is what i wrote
这是output: 9)
如果我想让变量a
得到我这样写的所有字符串,我需要做什么:a = (9,9)
而不是a = 9)