zsh-users
 help / color / mirror / code / Atom feed
From: Thorsten Kampe <thorsten@thorstenkampe.de>
To: zsh-users@zsh.org
Subject: Re: How to iterate over an array of associative arrays
Date: Sun, 14 Jul 2013 15:36:03 +0200	[thread overview]
Message-ID: <kru9g4$gbm$1@ger.gmane.org> (raw)
In-Reply-To: <CAHYJk3QF3Sk0PUjwr_j0OCeALhsWJM64MsB0aeeGhLkxC7osTg@mail.gmail.com>

* Mikael Magnusson (Sun, 14 Jul 2013 15:10:22 +0200)
> On 14 July 2013 14:35, Thorsten Kampe <thorsten@thorstenkampe.de> 
wrote:
> > Hi,
> >
> > I'd like to iterate over elements of an array. The elements are
> > associative arrays. This is my code:
> >
> > """
> > #! /usr/bin/env zsh
> > emulate -R zsh
> >
> > setopt nounset
> >
> > declare -A elem AssocArr1 AssocArr2
> >
> > AssocArr1=(key value1)
> > AssocArr2=(key value2)
> >
> > array=($AssocArr1 $AssocArr2)
> 
> Do you really want these $ here?

Yes, I really wanted to pass the actual associative arrays, but if I can 
pass the names that's fine with me, too.

> You need to use the (P) flag to access a parameter indirectly.
> % foo=(one two)
> % bar=foo
> % echo $bar[2]
> o
> % echo ${${bar}[2]}
> o
> % echo ${${(P)bar}[2]}
> two

Doesn't work for me:

"""
array=(AssocArr1 AssocArr2)

for elem in $array
    do echo ${${(P)elem}[key]}
done
"""

[empty output]

Thorsten


  reply	other threads:[~2013-07-14 13:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-14 12:35 Thorsten Kampe
2013-07-14 13:10 ` Mikael Magnusson
2013-07-14 13:36   ` Thorsten Kampe [this message]
2013-07-14 16:14     ` Valodim Skywalker
2013-07-14 16:49       ` Thorsten Kampe
2013-07-14 17:25         ` Valodim Skywalker
2013-07-14 17:21     ` Peter Stephenson
2013-07-14 19:57       ` Thorsten Kampe
2013-07-14 22:57         ` Bart Schaefer
2013-07-14 18:05     ` Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='kru9g4$gbm$1@ger.gmane.org' \
    --to=thorsten@thorstenkampe.de \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).