Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: how to measure strictness of a regex ?

by tobyink (Canon)
on Jan 23, 2013 at 00:30 UTC ( [id://1014819]=note: print w/replies, xml ) Need Help??


in reply to how to measure strictness of a regex ?

re::regmust may be of some help...

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

Replies are listed 'Best First'.
Re^2: how to measure strictness of a regex ?
by AnomalousMonk (Archbishop) on Jan 23, 2013 at 01:22 UTC

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

      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://1014819]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-03-19 08:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found