标签: regex
我试图使用锚点和原子团来消除回溯。但是,如果要包含第二个原子组“ field2 =(?>。*)”,则无法提取值“ a b c”和“ d e f”。
我的正则表达式怎么了?
regex: ^field1=(?>.*) field2=(?>.*)$ input: field1=a b c field2=d e f
https://regex101.com/r/LgwhoC/3/