"LN 5767774 a" in this sentence I want to take numbers after LN

Regex to get the number after the word LN , I just want 5767774 with white space and with one letter or any one number. I just want “5767774 a”

hey @Gopi_Krishna1 ,

just use this regex

(?<=LN\s)\d+\s*\w

image
for your reference
Regards,
Dheerendra Vishwakarma

3 Likes

I checked it’s working!
Good Work @Dheerendra_vishwakarma

Regards,
Ajay Mishra

1 Like

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