I have string sample as “One time charge 472.23 Monthly bills 789.23
Postpaid 502.36 Prepaid 899.32
Region 452.23 National 60.01”
Required text is 472.23 789.23
502.36 899.32
452.23 60.01
How to write regex for this
Thanks
Vijallaxshmi
No didn’t work in the required way…i have date also like “14-Jan-2019= 483.23”…It is extracting 14 too.
Thanks
Vijaylaxshmi
Yoichi
(Yoichi)
January 10, 2020, 5:52am
4
Hi,
Can you try the following?
\d+\.\d{2}
Regards,
1 Like
aanandsanraj
(Anandraj Rajendran)
January 10, 2020, 5:55am
6
@vijaylaxmi_teli
Try this one
\d+(\.\d{2}+)
Manish540
(Manish Shettigar)
January 10, 2020, 6:01am
7
Use this below regex,
“(?<=\s)(\d+.\d+)”
You will get all the six values separately.
Manish540
(Manish Shettigar)
January 10, 2020, 6:38am
9
Check this workflow,
TestSequence.xaml (6.2 KB)
1 Like
Vivek.A.S
(Vivek)
January 10, 2020, 7:51am
10
Hi @vijaylaxmi_teli , you got solution or not ?
Vivek.A.S
(Vivek)
January 10, 2020, 7:57am
11
Hi @vijaylaxmi_teli ,
Try this Pattern in matches Activity : [0-9]{1,}.[0-9]{1,}
system
(system)
Closed
January 13, 2020, 12:34pm
12
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.