Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正規表現で電話番号を検索し、必須の10桁と+、()、スペース文字、
以下のコードを試しましたが、機能しません:
"^[0-9]{10,10}[' '+()]$"
試す ^[ ()+]*([0-9][ ()+]*){10}$
^[ ()+]*([0-9][ ()+]*){10}$
これは、入力内の他の場所にある任意の数の、、、文字と正確に10桁の数字に一致します。()+
(
)
+
使ってみてください^[0-9\ \(\)\+]{10}$
^[0-9\ \(\)\+]{10}$