如何使用RegEx选择行末的数据?

时间:2018-10-16 18:05:33

标签: java regex

我有以下数据行: oauthscope: command_path.use

尝试创建仅检索command_path.use

的RegEx表达式

我已经尝试过了,但是它选择了与我想要的相反的东西:

^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: ''-我不知道如何告诉它从该模式开始到行尾的所有内容。

0 个答案:

没有答案