我正在尝试设置一个正则表达式来匹配文本,并且我希望一个特定的字符串与文本其余部分的单独组匹配(如果存在)。
例如,如果我的字符串是this is a test
,我想this is a
匹配第一组并test
匹配第二组。我正在使用 python 正则表达式库。以下是我想要的结果的更多示例
this is a test
- 第 1 组:this is a
,第 2 组:test
one day at a time
- 第 1 组:one day at a time
,第 2 组:
one day test is
- 第 1 组:one day
,第 2 组:test
testing, 1,2,3
- 不匹配
this is not a drill
- 第 1 组:this is not a drill
,第 2 组:
在这些情况下,我在第二组中匹配的特定字符串是 test。我不确定如何设置正则表达式以正确匹配这些特定情况。
不负相思意
慕的地6264312
相关分类