Hi;
I want to pull the expression between Regexle Amount and Subtotal.
Ouantity Item no. Description Unit Price Tax Amount
15 1011 Sprocket — Large 38.50 G 577.50
15 1010 Sprocket — Med 18.95 G 284.25
15 1009 Sprocket — Small 8.90 G 133.50
Subtotal 995.25
Gokul001
(Gokul Balaji)
February 9, 2022, 8:13am
2
Hi @Gorkem_Batuhan_MORKOC
Can you share Expected output
To get all the Values from Amount to Subtotal
Here is the regex expression
Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET.
Regards
Gokul
1 Like
Thank you very much Mr.Gokul
Gokul001
(Gokul Balaji)
February 9, 2022, 8:18am
4
Hi @Gorkem_Batuhan_MORKOC
Can you share the expected output
Regards
Gokul
15 1011 Sprocket — Large 38.50 G 577.50
15 1010 Sprocket — Med 18.95 G 284.25
15 1009 Sprocket — Small 8.90 G 133.50
Gokul001
(Gokul Balaji)
February 9, 2022, 8:27am
6
Hi @Gorkem_Batuhan_MORKOC
Use Assign Activity
LHS: Create an variable
RHS: System.Text.RegularExpression.Regex.Match(“Input String”,“(?s)(?<=Tax\sAmount\n)(.*?)(?=Subtotal)”).tostring
Here is the Regex expression
https://regex101.com/r/Zy5f3Q/1
For more Information refer the below regex
This CheatSheet introduces the basic use of regex functions. With further examples also special cases are presented.
Introduction
From the namespace System.Text.RegularExpressions following methods are offered:
Regex.Match
Regex.Matches
Regex.isMatch
Regex.Replace
Regex.Split
A simple usage for example would look like this:
[grafik]
Recommendation:
add System.Text.RegularExpressions to the imports:
[grafik]
it allows to use the shortened statement, as the namespace part can be ommited…
Regards
Gokul
2 Likes
Hi @Gorkem_Batuhan_MORKOC
if you need data as data table we can go with generate data table activity!
Regards
1 Like
ppr
(Peter Preuss)
February 9, 2022, 9:28am
8
for regex spanning over multiple line we do have to handle the \n as the dot (all chars) is excluding the line break. Have a look here:
if possible datatable parsing is recommended as well
2 Likes