Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Perl uses for Cryptograms - Part 1: One-liners and Word Patterns

by goibhniu (Hermit)
on Sep 04, 2007 at 03:16 UTC ( [id://636818]=CUFP: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    UTAK QYK UTYU SGGE RWESIAPU LGIAQ VDGI AJBADOAPLA, YPE AJBADOAPLA, HAX
    +X UTYU LGIAQ VDGI ZYE RWESIAPU.
    
  2. or download this
    perl -ne "print if m/^..(.)\1$/;" Words.knu
    
  3. or download this
    @ECHO OFF
    perl -ne "print if m/^%1$/;" Words.knu
    
  4. or download this
    perl -ne "print if m/^[a-z][a-z]([a-z])\1$/;" Words.knu
    
  5. or download this
    perl -ne "print if m/^([a-z])(?!\1)([a-z])(?!\1)(?!\2)([a-z])\1$/;" Wo
    +rds.knu
    
  6. or download this
    ([a-z])
    (?!\1)([a-z])
    
  7. or download this
    ([a-z])
    (?!\1)([a-z])
    (?!\1)(?!\2)([a-z])
    
  8. or download this
    ([a-z])
    (?!\1)([a-z])
    (?!\1)(?!\2)([a-z])
    (?!\1)(?!\2)(?!\3)([a-z])
    
  9. or download this
    ([a-z])
    (?!\1)([a-z])
    (?!\1)(?!\2)([a-z])
    (?!\1)(?!\2)(?!\3)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)([a-z])
    
  10. or download this
    ([a-z])
    (?!\1)([a-z])
    (?!\1)(?!\2)([a-z])
    (?!\1)(?!\2)(?!\3)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)([a-z])
    
  11. or download this
    ([a-z])
    (?!\1)([a-z])
    (?!\1)(?!\2)([a-z])
    ...
    (?!\1)(?!\2)(?!\3)(?!\4)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)(?!\6)([a-z])
    
  12. or download this
    ([a-z])
    (?!\1)([a-z])
    (?!\1)(?!\2)([a-z])
    ...
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)(?!\6)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)(?!\6)(?!\7)([a-z])
    
  13. or download this
    ([a-z])
    (?!\1)([a-z])
    (?!\1)(?!\2)([a-z])
    ...
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)(?!\6)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)(?!\6)(?!\7)([a-z])
    (?!\1)(?!\2)(?!\3)(?!\4)(?!\5)(?!\6)(?!\7)(?!\8)([a-z])
    
  14. or download this
    perl -ne "print if m/^(.)..\1..\1..\1$/;" Words.knu
    
  15. or download this
    perl -ne "print if m/^..d..ent$/;" Words.knu
    

Log In?
Username:
Password:

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

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

    No recent polls found