zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.w.stephenson@ntlworld.com>
To: zsh-users@zsh.org
Subject: Re: How to iterate over an array of associative arrays
Date: Sun, 14 Jul 2013 18:21:17 +0100	[thread overview]
Message-ID: <20130714182117.221d3501@pws-pc.ntlworld.com> (raw)
In-Reply-To: <kru9g4$gbm$1@ger.gmane.org>

On Sun, 14 Jul 2013 15:36:03 +0200
Thorsten Kampe <thorsten@thorstenkampe.de> wrote:
> Yes, I really wanted to pass the actual associative arrays, but if I can 
> pass the names that's fine with me, too.

So maybe you're looking for:


typeset -A AssocArr1 AssocArr2
typeset -a array
typeset key value

AssocArr1=(key1 value1)
AssocArr2=(key2 value2)

# array is a normal array containing key/value pairs
array=(${(kv)AssocArr1} ${(kv)AssocArr2})

# scan array by pairs
for key value in $array
    do echo $key $value
done


?

-- 
Peter Stephenson <p.w.stephenson@ntlworld.com>
Web page now at http://homepage.ntlworld.com/p.w.stephenson/


  parent reply	other threads:[~2013-07-14 17:21 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
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 [this message]
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=20130714182117.221d3501@pws-pc.ntlworld.com \
    --to=p.w.stephenson@ntlworld.com \
    --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).