Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

(code) Re: (4) in-place edit, regex, one-liner (Mo' Betta)

by ybiC (Prior)
on Nov 24, 2000 at 03:52 UTC ( [id://43180]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: (2) in-place edit, regex, one-liner (perl -i.bak -pe)
in thread in-place edit, regex, one-liner

I like it, thanks chromatic.   May I throw a slight curve in the fairway?
A quick dig in The Owl leads me to think something like this will match reference any image of alphanumeric name.   How close am I?

perl -i.bak -pe 's!(img  src=")(\w+?\.(gif|jpg|jpeg|png)")!$1/Images/$2!g' *.html

Update: The above one-liner was tweaked, and now works.

    Changes this:

<img src="12345.gif"> <img src="1b3e5.jpg"> <img src="1B3Df.jpeg"> <img src="abcde.png">

    To this:
<img src="/Images/12345.gif"> <img src="/Images/1b3e5.jpg"> <img src="/Images/1B3D5.jpeg"> <img src="/Images/abcde.png">
And saves original files as ".bak".
    cheers,
    Don
    striving for Perl Adept
    (it's pronounced "why-bick")

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://43180]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (6)
As of 2024-03-29 12:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found