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

Re^2: how to measure strictness of a regex ?

by AnomalousMonk (Archbishop)
on Jan 23, 2013 at 01:22 UTC ( [id://1014821]=note: print w/replies, xml ) Need Help??


in reply to Re: how to measure strictness of a regex ?
in thread how to measure strictness of a regex ?

I, also, have some (admittedly, rather idle) curiosity: what is the purpose of the prototype in the  re_strictness() function definition?

Replies are listed 'Best First'.
Re^3: how to measure strictness of a regex ?
by tobyink (Canon) on Jan 23, 2013 at 07:47 UTC

    I think my original code when I was testing was something along the lines of:

    print re_strictness qr/.../, "\n";

    In which case the ($) prototype helps Perl see the "\n" as a parameter for print, not for re_strictness.

    By the way, it's worth pointing out that qr/^Dad+y$/ is also considered slightly stricter than qr/Dad+y/.

    use 5.014; use strict; use warnings; use re (); use List::Util 'sum'; sub re_strictness ($) { sum map length, re::regmust shift } print re_strictness qr/^Dad+y$/, "\n", re_strictness qr/Dad+y/, "\n", re_strictness qr/D.+/, "\n", ;
    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (9)
As of 2024-03-19 08:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found