Hello,
I want to get amount from text file using regex. Can anyone please help.
Below is the screenshot of text file and from that I want 908,50 (highlighted)
Hello,
I want to get amount from text file using regex. Can anyone please help.
Below is the screenshot of text file and from that I want 908,50 (highlighted)
I would be helpfull if you upload the text file
cheers
Please write the Get text into text file then use regex
PDF output - Copy.txt (3.2 KB)
How about this expression?
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=EUR\s+)[\d.,]+").Tostring
Regards
Gokul
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=EUR\s+)\d+\,\d+").Tostring
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.