Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

It's sometimes useful to know where in a string a match occurs.

c:\@Work\Perl\monks>perl -wMstrict -le "my $s = 'kkkaaabc'; for my $rx ( 'k?a?', 'k*a?', 'k?a+', 'k+a+', 'k?a*', 'k*a*', 'a*', ) { print qq{'$s'}; ;; $s =~ m{ ($rx) }xms; ;; if (not defined $1) { print 'no match'; next; } ;; print ' ', ' ' x $-[1], '^' x ($+[1] - $-[1]), qq{ /$rx/ matched '$1' at offset $-[1]}; } " 'kkkaaabc' ^ /k?a?/ matched 'k' at offset 0 'kkkaaabc' ^^^^ /k*a?/ matched 'kkka' at offset 0 'kkkaaabc' ^^^^ /k?a+/ matched 'kaaa' at offset 2 'kkkaaabc' ^^^^^^ /k+a+/ matched 'kkkaaa' at offset 0 'kkkaaabc' ^ /k?a*/ matched 'k' at offset 0 'kkkaaabc' ^^^^^^ /k*a*/ matched 'kkkaaa' at offset 0 'kkkaaabc' /a*/ matched '' at offset 0
Note in particular the  /a*/ regex which I added at the end. This matches the empty string at offset 0 even though a perfectly good  'aaa' sequence is available further on. Engrave "Leftmost Longest" on a prayer wheel and keep it ever spinning in your mind.

Regexes are the most counterintuitive thing I've encountered in the realm of programming.

Updates:

  1. The initialization of capture variables (e.g., $1) to undef on regex recompilation is apparently only available from Perl version 5.10 onward. The code
    my $match = $s =~ m{ ($rx) }xms; if (not $match) { print 'no match'; next; }
    is more portable among different Perl versions.
  2. Also check out davido's Perl Regular Expression Tester


Give a man a fish:  <%-{-{-{-<


In reply to Re: basic question: regular expression by AnomalousMonk
in thread basic question: regular expression by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found