My source file here
contains HTML code where I want to change the phone number to be clickable in my app.
I am looking a regular expression to convert string >number<
into ><a href="tel:number">number</a><
Simple /\d/ regex wont work because there is html code such as style="color: #333333;
Please help. Thanks.