Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^5: cleaving a sequence with specific alphabets

by ikegami (Patriarch)
on May 21, 2008 at 17:00 UTC ( [id://687802]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $string = "RYOURPOSTBROKEN";
    
    ...
       my @arr = $string =~ /$re/g;
       print("$re: @arr\n");
    }
    
  2. or download this
    input:     RYOURPOSTBROKEN
    expecting: R YOURPOSTBR OK EN
    ...
    (?s-xim:(.*?[KR])(?!P)): R YOURPOSTBR OK
    (?s-xim:[^KR]+.(?!P)): YOU POSTBR OK EN
    (?s-xim:[^KR]*.(?!P)): R YOU POSTBR OK EN
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (7)
As of 2024-04-23 11:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found