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

Re^3: Simple way to skip spaces and # comments

by ikegami (Patriarch)
on Jul 31, 2020 at 14:42 UTC ( [id://11120148]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    a+
    
  2. or download this
    (?:a{1,32766})+
    
  3. or download this
    /\G (?: \s++ | \# .*+ )++ /xgc
    
  4. or download this
    /\G (?: (?: \s++ | \# .*+ ){1,32766}+ )+ /xgc
    
  5. or download this
    /\G
       (?: (?:
    ...
    
       ){1,32766}+ )+
    /xgc
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-03-28 14:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found