Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

RE: shortest

by Jeff Connelly (Acolyte)
on Sep 17, 2000 at 06:36 UTC ( [id://32848]=note: print w/replies, xml ) Need Help??


in reply to shortest

31 characters: perl -ne's/./$&&1?o:e/eg;print'

Replies are listed 'Best First'.
Ouch!
by frankus (Priest) on Sep 18, 2000 at 19:10 UTC
    perl -ne's/$&&1?o:e/eg;print'

    Okay this rocks and I've voted for your code... I think this is what's happening :

    1. perl -ne ''executes the one liner forever.
      1. the regexp substitutes each character using s/./ and /g.
      2. $& is the previous matches.
      3. &1 is evaluated in the trinary operator ? using /e.
      4. if &1 then replace with odd else replace with even
    2. print defaults to $_, the results of the regular expression.
    but what I really wanna know is: what is &1?

    Brother Frankus.

      &1 is the logical and applying the bit mask (1). Even numbers always end with a zero bit, odd always end with a 1 bit. This is a simple test for even/odd.
        Yup this I get, now ... how did I get a negative posting for asking a question? Is my appraisal wrong or does someone resent the ZX spectrum colours?

        Brother Frankus.

        Yup this I get, now ... how did I get a negative posting for asking a question? Is my appraisal wrong or does someone resent the spectrum colours?

        Brother Frankus.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-23 23:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found