How to remove the white space between two character

[Net Amount] 19211000 i get this number 19211000 using regex
plz help me

i need 1715513488 using regex

Hi @vivekktr,
This should help:
image

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)

image

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
image

hope this would help you

Cheers @vivekktr