Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: case matching to element in array?
- X-seq: zsh-users 5561
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: case matching to element in array?
- Date: Thu, 05 Dec 2002 13:42:39 +0000
- In-reply-to: "Phil Pennock"'s message of "Thu, 05 Dec 2002 14:31:33 +0100." <20021205143133.A29978@xxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
Phil Pennock wrote:
> What am I missing in the following example?
>
> (${(j:|:)fred_list})
Change this to
(${~${(j:|:)fred_list}})
to activate the `|'s. The extra level of substitution seems to be
necessary to avoid the `|' in the (j:|:) having an effect too soon.
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 692070
**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential
and/or privileged material.
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by
persons or entities other than the intended recipient is
prohibited.
If you received this in error, please contact the sender and
delete the material from any computer.
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author