Dot behavior in regex patterns

前端 未结 4 357
一生所求
一生所求 2021-01-14 18:25
Pattern p2 = Pattern.compile(\".*\");
Matcher m2 = p2.matcher(\"true\");
System.out.println(m2.matches() + \" [\" + m2.group() + \"]\");

When I use

4条回答
  •  心在旅途
    2021-01-14 18:33

    The dot . is a predefined character class. It matches any character (may or may not match line terminators). If want to define character class that includes a range of values, you can use [].

提交回复
热议问题