How can I get the only invoice number using Regex expression [ I highlighted it ]
Invoice Number: 12345
Due Date Invoice: 32040
@lakshman plz help
How can I get the only invoice number using Regex expression [ I highlighted it ]
Invoice Number: 12345
Due Date Invoice: 32040
@lakshman plz help
@balkishan Try below regex
System.Text.RegularExpressions.Regex.Match(str1,"(?<=Invoice Number:).+").ToString.Trim
where str1 is string variable which contains ur value.
No bro
buddy @balkishan
Your xaml is here.Get_Invoice_Number.xaml (11.0 KB)
Thanks but it will select the below number also as I mentioned in the post.
Thanks so much for your response. itβs resolved @Spark_robot
Right Solution is:
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.