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

comment on

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

That was fun! Thanks.

#!/usr/bin/perl -l # http://perlmonks.org/?node_id=1209857 use strict; use warnings; $_ = <<END; # starting conditions John apples,cherries,pears blacksmith,fisherman,programmer Patrick apples,cherries,pears blacksmith,fisherman,programmer Edward apples,cherries,pears blacksmith,fisherman,programmer END my $prev; do { print; $prev = $_; s/^John \S*\Kpears//m; # John doesn't like pears s/^Patrick \S+ \K\S+/blacksmith/m; # Patrick is a blacksmith s/^Edward \S+ \S*\Kfisherman//m; # Edward isn't a fisherman s/\S+(?= programmer$)/cherries/m; # The programmer likes cherries s/,+\K,|\B,+|,+\B//g; # cleanup extra commas for my $col (1 .. tr/ // / tr/\n// ) # for each column { for my $one ( /^(?:\S+ ){$col}(\w+)\s/gm ) # find each single one { s/^(?:\S+ ){$col}(?:\K$one,|\S+\K,$one\b)//gm; # delete in other + rows } } } until $_ eq $prev;

Outputs:

John apples,cherries,pears blacksmith,fisherman,programmer Patrick apples,cherries,pears blacksmith,fisherman,programmer Edward apples,cherries,pears blacksmith,fisherman,programmer John apples,cherries fisherman,programmer Patrick apples,cherries,pears blacksmith Edward apples,cherries,pears programmer John apples fisherman Patrick apples,pears blacksmith Edward cherries programmer John apples fisherman Patrick pears blacksmith Edward cherries programmer

In reply to Re^2: My first cpan module - App::ForKids::LogicalPuzzleGenerator by tybalt89
in thread My first cpan module - App::ForKids::LogicalPuzzleGenerator by pawel.biernacki

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 perusing the Monastery: (3)
As of 2024-04-25 09:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found