Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Re: and this or that

by mkmcconn (Chaplain)
on Feb 05, 2001 at 23:14 UTC ( [id://56478]=note: print w/replies, xml ) Need Help??


in reply to Re: and this or that
in thread and this or that

Thank you for the reply jeroenes.
(BTW, the first block in my question has a mistake, saying "$_" where it should say "$next".)
You said
I wouldn't use and with substitution, though. Just:

s/test/somestuff/; print;
does the job cleaner: only one print.

You're right about that. Would the following be a better illustration of the advantage I perceive?

s/^(\d+)/("0"x(8-length).$1)/xe and print or s/^(\w)/("\x20"x(8-length).$1)/xe and print for @ARGV;
Suppose that @ARGV is a combination of digits and words, all digits get zero-padding and all words are padded by space. Anything that fails both matches should be discarded.

Update:
Very well then, jeroenes - I will follow the tradition
And thanks again for the replies :-) mkmcconn

Replies are listed 'Best First'.
Re: Re: Re: and this or that
by jeroenes (Priest) on Feb 05, 2001 at 23:37 UTC
    Even than:
    for (@ARGV){ print if s/first/somet/ or s/second/somet/; }
    Would use only one print ;-).

    Jeroen
    "We are not alone"(FZ)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-04-24 07:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found