Home > Article > Web Front-end > dreamweaver regular expression search and replace_html/css_WEB-ITnose
Original string:
d1.jpg
d2.jpg
d3.jpg
d4.jpg
Replaced with:
f1.png
f2.png
f3.png
f4.png
Can this be replaced at once?
Yes, find d([0-9] .jpg) and replace it with: f1.
Yes, find d([0-9] .jpg) and replace it with: f1. (1 is the captured parameter, Dreamware doesn’t know if it is written this way)
Yes, search for d([0-9] .jpg) and replace it with: f1. (1 is the captured parameter, Dreamware doesn’t know if it is written this way)