RegEx-如何在前两个逗号之间获取字符串?

时间:2019-06-16 19:36:44

标签: regex

我有一些记录的Powershell阵列。记录如下:

  number = xxxx, name = testname, location = sydney, country = australia

使用正则表达式,我想获取前两个逗号之间的字符串:

name = testname

更好的

testname

哪个正则表达式适用于此?

1 个答案:

答案 0 :(得分:0)

这个表达式在这里可能就足够了,

sret

具有一个捕获组,其中包含我们所需的数据。

Demo

RegEx电路

jex.im可视化正则表达式:

enter image description here