regexp to find image path file in an image tag
- by Chris
Hi
I'm looking for a regexp that find all images path in an image tag (src) and transform all images path by cid:filename
<img src="../images/text.jpg" alt="test" />
to
<img src="cid:test" alt="test" />
Thanks for your help
Chris