正则表达式从右方向匹配
通常,我们使用正则表达式从左到右方向匹配。我想知道python中是否有一些开关可以用来从右到左匹配? 或者这个功能是否嵌入到任何其他语言中?
例如,
abcd1_abcd2
如果给定正则表达式abcd
,它将匹配两个abcd
字符串。我想要的是将最后一场比赛放在第一位,从而反向匹配。
Normally, we use regular expression match from left to right direction. I want to know whether there is some switch that can be used to match from the right to left in python?
Or is this feature embedded in any other language?
e.g.
abcd1_abcd2
If given regular expression abcd
, it will match two abcd
strings. What I want is to put the last match at first, thus matching in reverse direction.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按照@SilentGhost 的建议反转列表:
You can reverse the list as proposed by @SilentGhost: