in reply to Re^2: How do I stop printing a hash value
in thread How do I stop printing a hash value

Read the document for "grep" more carefully. The following might be a starting point for you, and you can continue from here:

print join(",", grep(!/\/\*(.*)\*\//, @$value));

Peter (Guo) Pei

Replies are listed 'Best First'.
Re^4: How do I stop printing a hash value
by iphone (Beadle) on Dec 18, 2010 at 05:41 UTC

    Thanks for all your help.The following works for me.

    if (scalar @$value) { # check that the arrayref isn't empty my @arr = grep(!/^\/\*/, @$value); print "\n ", join(", ", @arr), "\n\n"; }