Hi Team,
Need only first number from E212 (Note: numbers dynamically changes)
Need Output like: 655
thanks
shaik
Hi Team,
Need only first number from E212 (Note: numbers dynamically changes)
Need Output like: 655
thanks
shaik
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+
You’re Welcome @shaik.muktharvalli1
Happy Automation !!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.