Hi guys,
I have never used regular expressions with caché object script before, so I've read through the documentation, but I am struggling with things that I'd like some help on.
My need is to identify specific html tags and transform them out to something else. Example:
I need to identify those guys in a wider string:
"<span style=\""font-family: '';font-weight: bold;\"" >BOLD TEXT</span>"
"<span font-style:italic;\" >ITALIC TEXT</span>"
And then they'll become:
"<b>BOLD TEXT</b>"
"<i>ITALIC TEXT</i>"
I started off by using this regex pattern https://community.intersystems.com/post/regular-expression



