Hoe to get petrol Price 101

Hi,
i have one website link is below

in this i want to get get petrol price like–101

image

i am unable to split this.
can any one help this ?

are you looking for this?
grafik

1 Like

HI @Anand_Designer

Checkout this

While screenscrapping set to scrap as full text and then use this expression

System.Text.RegularExpressions.Regex.Match(INputString,"\d.+").Tostring

Regards
Sudharsan

1 Like

Hi,

Hope the following sample helps you.

System.Text.RegularExpressions.Regex.Match(price,"[\d.,]+").Value

OR

System.Text.RegularExpressions.Regex.Match(price,"\d+").Value

Sample20230310-5L.zip (5.2 KB)

Regards,

1 Like

Hii @Anand_Designer ,
I have done the same assignment earlier. Please check this workflow.
Petrol_Price.zip (96.9 KB)

Regards,

2 Likes

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