Hi,
i have one website link is below
in this i want to get get petrol price like–101
i am unable to split this.
can any one help this ?
Hi,
i have one website link is below
in this i want to get get petrol price like–101
i am unable to split this.
can any one help this ?
are you looking for this?
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
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,
Hii @Anand_Designer ,
I have done the same assignment earlier. Please check this workflow.
Petrol_Price.zip (96.9 KB)
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.