[Net Amount] 19211000 i get this number 19211000 using regex
plz help me
Hi @vivekktr,
This should help:
i need only the 1715513488 only
Hi @vivekktr
Based on the expression using match activity
For each item and pass the result
Print the item
Thanks
Ashwin.S
Or use
(?<=dsfasdfasaf).*
Thanks
Ashwin.S
With use of regex you can just refer to each element found. It my example it will be:
[regex_output](1).ToString
(in round brackets you need to put index of element)
we can use Matches activity and mention the expression as
“[0-9].*(?=Comment:)”
for input string --read the above text file using read text activty and the output of that activity would be a string variable…we can pass that variable here as input
it worked as well
hope this would help you
Cheers @vivekktr