Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: how to use character range [] in substitution pattern :gs



On Wed, 9 May 2012 16:23:20 +0200
Jérémie Roquet <arkanosis@xxxxxxxxx> wrote:
> 2012/5/9 reckoner <reckoner@xxxxxxxxx>:
> > I'm trying to use the the [] character range to substitute for embedded
> > parenthesis as in the following:
> >
> > % echo ${x:gs/[()]/_/}
> >
> > But This isn't working for some reason. It's not complaining about syntax,
> > so I'm pretty sure that I'm using the character range [] incorrectly
> > somehow.
> 
> By default, the left side of a substitution is a string, not a
> pattern. You have to setopt HIST_SUBST_PATTERN to use patterns
> instead.

Probably better to use the syntax that already handles this:

${x//[\(\)]/_}

-- 
Peter Stephenson <pws@xxxxxxx>            Software Engineer
Tel: +44 (0)1223 692070                   Cambridge Silicon Radio Limited
Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, UK


Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom
More information can be found at www.csr.com. Follow CSR on Twitter at http://twitter.com/CSR_PLC and read our blog at www.csr.com/blog



Messages sorted by: Reverse Date, Date, Thread, Author