V
Vito Corleone
Hi,
How can I change every:
<photo src=111:123:456> to
<img src=img/111/123/456>?
I tried:
$html =~ s#<photo src=($d+)$d+)$d+)>#<img src=img/$1/$2/$3>#g;
But there is a possibility that there is a newline in it. Is there any
better way to change this?
How can I change every:
<photo src=111:123:456> to
<img src=img/111/123/456>?
I tried:
$html =~ s#<photo src=($d+)$d+)$d+)>#<img src=img/$1/$2/$3>#g;
But there is a possibility that there is a newline in it. Is there any
better way to change this?