s/// is the substitution operator, generally not used for comparison, you want m// the match operator

#!/usr/bin/perl -- #~ 2011-09-07-00:31:00 by Anonymous Monk #~ perltidy -csc -otr -opr -ce -nibc -i=4 use strict; use warnings; use autodie; # dies if open/close... fail Main(@ARGV); exit(0); sub Main { if ( @_ == 3 ) { NotDemoMeaningfulName(@_); } else { Demo(); print Usage(); } } ## end sub Main sub NotDemoMeaningfulName { my ( $inputOne, $inputTwo, $outputFile ) = @_; open my ($inOne), '<', $inputOne; open my ($inTwo), '<', $inputTwo; open my ($outFh), '>', $outputFile; while ( not eof $inOne ) { my $onel = <$inOne>; my $twol = <$inTwo>; for ( $onel, $twol ) { chomp; $_ = $1 if /,\s*([^,]+)$/; } print $outFh "{$onel}{$twol}\n"; } ## end while ( not eof $inOne ) close $inOne; close $inTwo; close $outFh; } ## end sub NotDemoMeaningfulName sub Usage { <<"__USAGE__"; $0 $0 dataFile1 dataFile2 outputFile perl ${\__FILE__} perl ${\__FILE__} dataFile1 dataFile2 outputFile __USAGE__ } ## end sub Usage sub Demo { my ( $Input, $Input2, $WantedOutput ) = DemoData(); NotDemoMeaningfulName( $Input, $Input2, \my $Output ); print $Output, "\n\n"; require Test::More; Test::More::is( $Output, $WantedOutput, ' NotDemoMeaningfulName Works Aas Designed' ); Test::More::done_testing(); } ## end sub Demo sub DemoData { my $One = <<'__One__'; Optometrists and Opticians (simple) Regulations, Cap. 500A, RG 2 __One__ my $Two = <<'__Two__'; OPTOMETRISTS AND OPTICIANS (SIMPLE) REGULATIONS, Cap. 500A, Regulation + 2 __Two__ my $Three = <<'__Two__'; {RG 2}{Regulation 2} __Two__ return \$One, \$Two, $Three; } ## end sub DemoData __END__ $ prove pm.924549.pl pm.924549.pl .. ok All tests successful. Files=1, Tests=1, 1 wallclock secs ( 0.12 usr + 0.06 sys = 0.19 CPU +) Result: PASS $ perl pm.924549.pl {RG 2}{Regulation 2} ok 1 - NotDemoMeaningfulName Works Aas Designed 1..1 pm.924549.pl pm.924549.pl dataFile1 dataFile2 outputFile perl pm.924549.pl perl pm.924549.pl dataFile1 dataFile2 outputFile

Your title is not very effective ( see How do I compose an effective node title?, Markup in the Monastery ) and remember, "Your 'urgent need' is not our emergency."


In reply to Re: Comparing two text files by Anonymous Monk
in thread Comparing two text files by Lancy

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.