Have to get particular number from regular expression

My input:

Access Reference #OAP248228328 has been Approved.

Out put:

248228328

anyone please

thanks
shaik

Hi @shaik.muktharvalli1

Try this

\d+

1 Like

@shaik.muktharvalli1

(?<=\#\w+)\d+

1 Like

After OAP i have to get number

@shaik.muktharvalli1

(?<=OAP)\d+

image
(?<=[#A-Z]+)\d+
or
(?<=#OAP)\d+

1 Like

Thanks you all for Instant replay :kissing_heart:

thanks
shaik

1 Like

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