What is the regex for below? sss and sst values without %?

SSS = 11.1%

SST = 0.8%

Use This For SSS : (?<=SSS\s=\s)[\d.]+

Use This For SST : (?<=SST\s=\s)[\d.]+

Regards,
Saloni

1 Like

Thank you!!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.