Need only first of number from E212

Hi Team,
Need only first number from E212 (Note: numbers dynamically changes)

Need Output like: 655

thanks
shaik

Hi @shaik.muktharvalli1

Here is the regex for your requirement please check and let me know the result:

copied!

(?<=E\.\s*212.*\n\s*)(\d+)

Regards

try the following pattern

(?<=E\.\s+212\s+Number.*\n)\d+
1 Like

thanks you @vrdabberu

it’s working fine :hugs:

thanks
shaik

1 Like

You’re Welcome @shaik.muktharvalli1

Happy Automation !!

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