Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

printing array problem
Any tips on what I'm doing wrong here appreciated.

I'm using perl version 5.6.1 on Win98,

and this test script i've written, I was hoping would print each element
of this array, on a new line, then print the array again in reverse order.

What actually output's is the same array twice with all elements printed
on the same line.

What is wrong with my attempt to reverse the array, adn why does each
scalar not print on a new line?

thanks.

--code snippet---

#!C:\perl\bin\perl

@array = qq(1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen);

foreach (@array)

{

print $_;

print "\n";

}

@array = reverse @array;

foreach (@array) {

print $_;

print "\n";

}


Report this thread to moderator Post Follow-up to this message
Old Post
Mark Day
09-28-04 02:03 PM


Re: printing array problem
Mark Day wrote:
> Any tips on what I'm doing wrong here appreciated.
>
> I'm using perl version 5.6.1 on Win98,
>
> and this test script i've written, I was hoping would print each element
> of this array, on a new line, then print the array again in reverse order.
>
> What actually output's is the same array twice with all elements printed
> on the same line.
>
> What is wrong with my attempt to reverse the array, adn why does each
> scalar not print on a new line?
>
> thanks.
>
> --code snippet---
>
> #!C:\perl\bin\perl
>
> @array = qq(1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen);

qq() gives you an interpolated string - man perlop. what you are
effectively doing here is

@array = "1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen";

which will set $array[0] to "1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen"
and leave the rest of the array empty.

you probably mean

my @array = qw(1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen);

though that will give you "baker's" and "dozen" as separate array elements.

You can also skip the

@array = reverse @array

step

ie

foreach( reverse @array){

...

Mark

Report this thread to moderator Post Follow-up to this message
Old Post
Mark Clements
09-28-04 02:03 PM


Re: printing array problem
Mark Day  <soundz@techie.com> wrote in comp.lang.perl.misc:
> Any tips on what I'm doing wrong here appreciated.
>
> I'm using perl version 5.6.1 on Win98,
>
> and this test script i've written, I was hoping would print each element
> of this array, on a new line, then print the array again in reverse order.
>
> What actually output's is the same array twice with all elements printed
> on the same line.
>
> What is wrong with my attempt to reverse the array, adn why does each
> scalar not print on a new line?
>
> thanks.
>
> --code snippet---
>
> #!C:\perl\bin\perl
>
> @array = qq(1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen);

[snip]

Look up what qq() does.  I guess you meant to say qw() instead.

Anno

Report this thread to moderator Post Follow-up to this message
Old Post
Anno Siegel
09-28-04 02:03 PM


Re: printing array problem
Mark Day wrote:
>
> hoping would print each element
> of this array, on a new line, then print the array again in reverse order.
>
> What is wrong with my attempt to reverse the array, adn why does each
> scalar not print on a new line?
>
>
> #!C:\perl\bin\perl
>
> @array = qq(1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen);

Your problem is that you're using qq which will surround the contents of
the parenthesis with double quotes rather than qw which will surround
each word in the parenthesis with double quotes.  You are basically
creating and array with one element in it: "1 2 3 4 5 6 7 8 9 10 11 12
baker's dozen" and reversing this then gives you the same single element
in reverse order.

Replace qq with qw and see what happens.

Graham

>
> foreach (@array)
>
> {
>
> print $_;
>
> print "\n";
>
> }
>
> @array = reverse @array;
>
> foreach (@array) {
>
> print $_;
>
> print "\n";
>
> }

Report this thread to moderator Post Follow-up to this message
Old Post
Graham Wood
09-28-04 02:03 PM


Re: printing array problem

Mark Clements wrote:

> qq() gives you an interpolated string - man perlop. what you are
> effectively doing here is
>
> @array = "1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen";
>
> which will set $array[0] to "1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen"
> and leave the rest of the array empty.
>
> you probably mean
>
> my @array = qw(1 2 3 4 5 6 7 8 9 10 11 12 baker's dozen);
> though that will give you "baker's" and "dozen" as separate array elements
.
>
> You can also skip the
>
> @array = reverse @array
>
> step
>
> ie
>
> foreach( reverse @array){
>
> ...
>
> Mark


Great! thanks.


Report this thread to moderator Post Follow-up to this message
Old Post
Mark Day
09-28-04 02:03 PM


Re: printing array problem
Graham Wood  <Graham.T.Wood@oracle.com> wrote in comp.lang.perl.misc:
> Mark Day wrote:

[...]
 
>
> Your problem is that you're using qq which will surround the contents of
> the parenthesis with double quotes rather than qw which will surround
> each word in the parenthesis with double quotes.

That is wrong.  "qw()" surrounds the whole string with single quotes,
then splits the result on whitespace.

Anno

Report this thread to moderator Post Follow-up to this message
Old Post
Anno Siegel
09-28-04 02:03 PM


Re: printing array problem
Anno Siegel <anno4000@lublin.zrz.tu-berlin.de> wrote in comp.lang.perl.misc:
> Graham Wood  <Graham.T.Wood@oracle.com> wrote in comp.lang.perl.misc: 
>
> [...]
> 
>
> That is wrong.  "qw()" interprets the whole string in single-quote
> style, then splits the result on whitespace.
>
> Anno



Report this thread to moderator Post Follow-up to this message
Old Post
Anno Siegel
09-28-04 02:03 PM


Re: printing array problem
Graham Wood  <Graham.T.Wood@oracle.com> wrote in comp.lang.perl.misc:
> Mark Day wrote:

[...]
 
>
> Your problem is that you're using qq which will surround the contents of
> the parenthesis with double quotes rather than qw which will surround
> each word in the parenthesis with double quotes.

That is wrong.  "qw()" treats the whole string as single quoted,
then splits the result on whitespace.

Anno


Report this thread to moderator Post Follow-up to this message
Old Post
Anno Siegel
09-28-04 02:03 PM


Re: printing array problem
Anno Siegel wrote:
>
> Graham Wood  <Graham.T.Wood@oracle.com> wrote in comp.lang.perl.misc: 
>
> [...]
> 
>
> That is wrong.  "qw()" treats the whole string as single quoted,
> then splits the result on whitespace.


Oh.  Thanks

Graham

>
> Anno

Report this thread to moderator Post Follow-up to this message
Old Post
Graham Wood
09-28-04 02:03 PM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

PERL Miscellaneous archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 05:34 PM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.