Hi All, i have a problem with using sed in a perl script. Requirement: Read a csv file (file1) containing certain pattern, match the pattern in another text file (file2) and delete it where ever its occurring.

file1:

abc/def sde/dfg/htf

file2:

abc/def = 100 sde/dfg/htf = 230 dad/fry = 000

in the end only dad/fry = 000 should remain in file2.

I cannot install any package, so have to use the default perl options.

Since my file1 contains special character "/" , i have escaped it in my code.

my sed command is working fine if I try to run it without loop, i.e for one pattern only. As soon as I add it in loop, it fails.

my code:

my $var = "sde\\/dfg\\/htf"; `sed -i '/$var/d' ADT_DVEBMGS33_ldciadt`;

The above works fine.

i tried to encorporate in a loop

my $len = scalar @delete; for ( my $i = 0; $i <=$len; $i++){ my $first = $delete[$i]; chomp $first; $first =~ s:/:\\\\/:g; `sed -i "/$first/d" file2`; }

error

<c> sed: -e expression #1, char 10: extra characters after command sed: -e expression #1, char 0: no previous regular expression


In reply to sed in perl by GauCho

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.