I have the following code which finds duplicates in 2 text files and spits out the duplicates into 3 seperate files. Its great, except that I now want it to ignore special characters such as brackets, commas, apostophes, quotes etc. How do I amend the code to ignore those types of characters but still report duplicates?
#!/usr/bin/perl -w #use strict; sub slurp{ local *ARGV; @ARGV = @_; <> } my %where; $file1 = "c:\\gpTemp\\chris\\validation\\brookdeliv\.txt"; $file2 = "c:\\gpTemp\\chris\\validation\\LD\.txt"; $both = "c:\\gpTemp\\chris\\validation\\ld\\Acts_delivered\.txt"; $infile1 = "c:\\gpTemp\\chris\\validation\\ld\\Acts_Missing\.txt"; $infile2 = "c:\\gpTemp\\chris\\validation\\ld\\Acts_Extra\.txt"; open BOTH, "> $both" or die "Cannot open $new for writing: $!"; open INFILE1, "> $infile1" or die "Cannot open $new for writing: $!"; open INFILE2, "> $infile2" or die "Cannot open $new for writing: $!"; $where{$_} .= "1" for slurp($file1); $where{$_} .= "2" for slurp($file2); for (sort keys %where) { my $where = $where{$_}; if ($where =~ /12/) { print BOTH; } elsif ($where =~ /1/) { print INFILE1; } else { print INFILE2; } print ":\t$_"; }

In reply to Finding duplicates in a text file by ilottl

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.