Javascript – Regex – match '%20' in encoded tel URL
I have the following regex: (?:[s:]|d+(?:-|.)|^)(?(d{3}))?[- .]?(d{3})[- .]?(d{4})(?=<|s|$) When copying the regex it looks that some escape backslashes got lost, so here is the correct regex: (?:[s:]|d+(?:-|.)|^)(?(d{3}))?[- .]?(d{3})[- .]?(d{4})(?=<|s|$) It is used in Tel Linker extension on Chrome to correctly…