So say I have html with an image tag like this:
<p> (1) some image is below: <img src="/somwhere/filename_(1).jpg"> </p>
I want a regular expression that just gets rid of the bracket in the file name, so my html will look like this:
<p> (1) some image is below: <img src="/somwhere/filename_1.jpg"> </p>
Does anyone know how to do this? My programming language is C #, if that matters ...
I will be eternally grateful and send you very nice karma. :)
source share