I need a regular expression to convert US tel number to link

前端 未结 3 1322
慢半拍i
慢半拍i 2021-01-15 14:47

Basically, the input field is just a string. People input their phone number in various formats. I need a regular expression to find and convert those numbers into links.

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-15 15:04

    Afaik, no phone enters the other characters, so why not replace [^0-9] with '' ?

提交回复
热议问题