Java正则表达式:获取匹配的序列
在 Perl/PHP 正则表达式中,可以匹配序列并获取具有匹配序列的数组:
preg_match('/20[0-1][0-9]/', $inputstring, $array_return); // PHP
我不知道如何在 Java 中执行此操作。 match.group()
返回整个字符串。
这不可能吗?
In Perl/PHP regex is's possible to match a sequence and get an array with matched sequences:
preg_match('/20[0-1][0-9]/', $inputstring, $array_return); // PHP
I can't figure out how to do this in Java. match.group()
returns the whole string.
Is this impossible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行类似于以下操作的操作:
此后,
matches
将包含与模式匹配的每个子字符串。在本例中,它只是每个字母,不包括空格。
如果您想将
List
转换为String[]
只需使用:What you can do is something similar to the following:
After this,
matches
will contain every substring that matched the Pattern.In this case, it is just every letter, excluding spaces.
If you want to turn a
List<String>
into aString[]
just use:如果您只想返回匹配的一部分,请使用捕获括号。
例如,要仅从 MM/DD/YYYY 日期中获取年份,您想要的正则表达式是
我不知道在 Java 中执行此操作的具体细节(例如,您可能需要转义某些字符),但只是知道你应该寻找“捕获组”应该很有用。
If you only want to return part of the match, use capturing parentheses.
For example, to get only the year out of an MM/DD/YYYY date, the regex you want is
I don't know the specifics of doing it in Java (you might need to escape some characters, for example), but just knowing that you should look for "capturing groups" should be of use.