-4

I have a text which contains a phone number. I want to find this phone number and turn it to a clickable link, so that people can simply click on it and call the number.

Example:

If you are interested please call us on +XXXXXXXXXX

Ozan Kurt
  • 3,731
  • 4
  • 18
  • 32

1 Answers1

3

You will have to use a Regex to find the number inside the text and then you can simply replace it with with an anchor tag which has the href attribute as href="tel:+XXXXXXXX".

Here you can find the info about the anchor tag: href="tel:" and mobile numbers

Ozan Kurt
  • 3,731
  • 4
  • 18
  • 32