-1
は、私は、次の電話番号をカバーするために正規表現を書きたい:説明とインドの電話番号正規表現
+91 33 1234 5678 (landline with two digit city code. 33 in this example)
+91 123 1234 5678 (landline with three digit city code. 123 in this example)
+91 12345 67890 (mobile no. Mobile no starts with 9 or 8 or 7)
すべてのヘルプは非常に参考になります。私が使用しています
コードでは、まずあなたが最初にあなたの正規表現を変更する必要がある、まあ
\+91\s([\d]{2,3}\s)?[\d]{2,5}\s[\d]{3,4}
質問は何ですか? – Xufox
'[\ d]'は必要ありません。 '\ d'(大括弧なし)を使用してください。 – 4castle
電話番号を検証するのは難しいです。既存のライブラリを使用します(例: [Googleの](https://github.com/googlei18n/libphonenumber)。 –