You really need to show your input and output as well as the process you're using to get from one to the other. Guidelines for doing this can be found in "How do I post a question effectively?".

"but it is not working , @foo_d always holds 1 if anyone can please help out"

How are you determining what "@foo_d always holds"? Here's a number of different ways that you might be doing this:

$ perl -Mstrict -Mwarnings -le ' my @all_words = qw{abc "def ghi "jkl mno}; print "*** Using grep BLOCK LIST ***"; my @qq_words_block = grep { /^"/ } @all_words; print "qq_words_block = ", @qq_words_block; print "qq_words_block = " . @qq_words_block; print "qq_words_block = ", "@qq_words_block"; print "qq_words_block = " . "@qq_words_block"; print "*** Using grep EXPR, LIST ***"; my @qq_words_expr = grep(/^"/, @all_words); print "qq_words_expr = ", @qq_words_expr; print "qq_words_expr = " . @qq_words_expr; print "qq_words_expr = ", "@qq_words_expr"; print "qq_words_expr = " . "@qq_words_expr"; ' *** Using grep BLOCK LIST *** qq_words_block = "def"jkl qq_words_block = 2 qq_words_block = "def "jkl qq_words_block = "def "jkl *** Using grep EXPR, LIST *** qq_words_expr = "def"jkl qq_words_expr = 2 qq_words_expr = "def "jkl qq_words_expr = "def "jkl

In list context, @array expands to its elements; in scalar context, you get the number of elements.

Search for $LIST_SEPARATOR in perlvar for a discussion of why "@array" separates the elements with spaces.

-- Ken


In reply to Re^3: using grep to find a word by kcott
in thread using grep to find a word by shushant

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.