I have a database of texts that contains this kind of syntax in the middle of English sentences that I need to turn into HTML links using PHP
"text1(text1)":http://www.example.com/mypage
Notes:
- text1 is always identical to the text in parenthesis 
- The whole string always have the quotation marks, parenthesis, colon, so the syntax is the same for each. 
- Sometimes there is a space at the end of the string, but other times there is a question mark or comma or other punctuation mark. 
- I need to turn these into basic links, like 
<a href="http://www.example.com/mypage">text1</a>
How do I do this? Do I need explode or regex or both?
 
     
    
 
     
    