我有以下数据行:
oauthscope: command_path.use
尝试创建仅检索command_path.use
我已经尝试过了,但是它选择了与我想要的相反的东西:
^oauthscope: (.*?)
我的Java代码如下:
Pattern pattern = Pattern.compile("^oauthscope: (.*?)");
String mydata = "oauthscope: command_path.use";
Matcher matcher = pattern.matcher(mydata);
if(matcher.find()) {
System.out.println("I found: '" + matcher.group(1) + "'");
} else {
System.out.println("No match found!");
}
我得到的结果是这样的:
I found: ''
-我不知道如何告诉它从该模式开始到行尾的所有内容。