RegexNeed

Hi Team,

I wanted to capture Indian phone numbers from below text, someone please hep me here.

“business solutions manglore branch mobile number is +91 98765438963, Bangalore branch number is 9886535782
Texus HQ number is +1987 098 8756 and Mumbai Branch number is +91987634578”

Which all number you want to extract only 10 digit numbers ?
Include +91 ?

Hi @Shaik.Yezdani

Below is the regex for all numbers :-

  1. For business solutions manglore branch mobile number is +91 98765438963
    image

  2. Bangalore branch number is 9886535782
    image

  3. Texus HQ number is +1987 098 8756
    image

  4. Mumbai Branch number is +91987634578”
    image

Hope this helps you.
Mark as solution and like it if this helps you :slight_smile:

Happy Automation :raised_hands:

Best Regards
Er Pratik Wavhal :robot::man_technologist:t4: :computer:

2 Likes

@hasib08 i want the 10 digit numbers and numbers starts with +91

Try this regex

Thanks

1 Like

@Shaik.Yezdani Take a look at this regex expression as well :

1 Like

Hi, you can use (((+){1}91){1})? ?-?[987]{1}[0-9]{9,10}

It’s backslash +, not only +

\+91(\s*|)\d{10}

after +91 should be 10 digits?

try above