Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

RegEx + vs. {1,}

by Sewi (Friar)
on Oct 10, 2012 at 11:03 UTC ( [id://998200]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    perl -le 'print $x = "abcdefgxxabcdefgzzabcdsjfhkdfab"; print $2 if $x
    + =~ /((\w+).*?\2.*?)+/;'
    abcdefgxxabcdefgzzabcdsjfhkdfab
    ab
    
  2. or download this
    perl -le 'print $x = "abcdefgxxabcdefgzzabcdsjfhkdfab"; print $2 if $x
    + =~ /((\w{2,}).*?\2.*?)+/;'
    abcdefgxxabcdefgzzabcdsjfhkdfab
    abcdefg
    
  3. or download this
    perl -le 'print $x = "abcdefgxxabcdefgzzabcdsjfhkdfab"; print $2 if $x
    + =~ /((\w{2,}?).*?\2.*?)+/;'
    abcdefgxxabcdefgzzabcdsjfhkdfab
    cd
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2024-04-25 12:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found