How to capture the value between strings that have commas and quotes?
regex:
Active:(?s)(.*)"
string:
"Activity / Stop: 23.07", "Activity / Active: 21.07", "Activity / Backlog: 0.81"
result:
Desired output:
21.07
How to capture the value between strings that have commas and quotes?
regex:
Active:(?s)(.*)"
string:
"Activity / Stop: 23.07", "Activity / Active: 21.07", "Activity / Backlog: 0.81"
result:
Desired output:
21.07