Samy_rio has asked for the wisdom of the Perl Monks concerning the following question:
Hi Monks, I will try to use 'OUTPUT_FIELD_SEPARATOR' in different ways. Now I am facing problem, that is 'OUTPUT_FIELD_SEPARATOR' is not working inside Double quotes.
Sample code:
@files=('apple','ball','cat','dance'); $,="\n"; ###Below line OUTPUT_FIELD_SEPARATOR is working print "\nArray Elements in Outoff Double Quotes :", @files; ###Below line OUTPUT_FIELD_SEPARATOR isnot working print "\nArray Elements within Double Quotes :\n@files";
I know this question is silly, but I need to know the fact.
Thanks in advance.
Regards,
Velusamy R.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problem in OUTPUT_FIELD_SEPARATOR
by poj (Abbot) on Aug 27, 2005 at 08:04 UTC | |
|
Re: Problem in OUTPUT_FIELD_SEPARATOR
by BrowserUk (Patriarch) on Aug 27, 2005 at 08:04 UTC | |
by Samy_rio (Vicar) on Aug 27, 2005 at 09:09 UTC | |
by sh1tn (Priest) on Aug 27, 2005 at 11:49 UTC | |
|
Re: Problem in OUTPUT_FIELD_SEPARATOR
by spiritway (Vicar) on Aug 27, 2005 at 08:02 UTC |