Your code as posted:

open IN, "d1.txt" or die "No such file:$!\n"; open OUT, ">ABC.txt" or die; while ( <IN> ) { chomp $_; $a[ $l ] = $_; ++$l; } my @array = qw( doxorubicin is a potent anti-estrogen drug and tamoxif +en ); for ( $i = 0; $i < $l; ++$i ) { for $z ( @array ) { if ( $z =~ /\b\w^$a[$i]$\b/i ) { $z =~ s/$z/<span>$z<\/span>/; $i++; print "@array "; } } }
My script is fine,

I don't see how you can say that.

You are trying to use the string "(5r)-6-(4-{[2-(3-Iodobenzyl)-3-Oxocyclohex-1-En-1-Yl]Amino}Phenyl)-5-Methyl-4,5-Dihydropyridazin-3(2h)-One" as a regular expression to match against the contents of @array but the elements of @array are all smaller than that string so they will never match.    The regular expression has to be able to fit inside the string.

You are using the regular expression /\b\w^$a[$i]$\b/i which says: Match a Word boundary followed by a single Word character followed by the beginning of the string followed by the contents of $a[$i] followed by the end of the string followed by a word boundary.    You can't match anything BEFORE the beginning of the string or AFTER the end of the string, there is nothing there to match.


In reply to Re: Invalid range [] by jwkrahn
in thread Invalid range [] by Nandini21

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.