I need to particular data format from different subject line in outlook .Kindly help on this issue

Sample input
1.Balance Confirmation for 2222-102237-05302024
2. service request of Balance Confirmation for 5901-102248-05312024
3. Soft request and ref of Balance Confirmation for 4302-106663-05302024

Output should be:
2222-102237-05302024
5901-102248-05312024
4302-106663-05302024

This regex format will be same

Hi @sathish_moorthy

[\d-]+$

Sequence8.xaml (7.7 KB)

or

Input="Balance Confirmation for 2222-102237-05302024"
Output=System.Text.RegularExpressions.Regex.Match(Input,"(\d+\-\d+\-\d+)").Value

Regards,

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.