How to read the sentence next to one word

Hi All,

I would like to read sentence next to number how can i read.

Ex: Action Item 233556 Confirmation Rate number is 100%.

I have to read the “Confirmation Rate number is 100%.”. How can i read using Regex. Please help me i have tried with <?<=Action Item \s*)+ it is not working for me.

Thanks in Advance,
Niranjan

Hi @Niranjan_k

Input = "Action Item 233556 Confirmation Rate number is 100%."

Output = System.Text.RegularExpressions.Regex.Match(Input,"(?<=\d+\s+)(.*)").Value

Regards

Hi @Niranjan_k

Input = "Action Item 233556 Confirmation Rate number is 100%."
Output = System.Text.RegularExpressions.Regex.Match(Input,"(?<=\d+\s+)(.*)").Value

Check the below image for better understanding.

Regards

@vrdabberu thank you so much

1 Like

Hi @Niranjan_k

Thank You

Happy Automation!!

1 Like

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