zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.stephenson@samsung.com>
To: Zsh Users <zsh-users@zsh.org>
Subject: Re: Is there something in parser that always starts new token?
Date: Fri, 02 Sep 2016 17:43:54 +0100	[thread overview]
Message-ID: <20160902174354.471c308e@pwslap01u.europe.root.pri> (raw)
In-Reply-To: <CAKc7PVApnS8mM1kQNF341Uq-NG9AferCgYjO+im5=wkZDLGp5g@mail.gmail.com>

On Fri, 02 Sep 2016 18:27:11 +0200
Sebastian Gniazdowski <sgniazdowski@gmail.com> wrote:
> Hello
> a='`something something else'; print -rl -- "${(@z)a}"
> output: `something something else
> 
> I would like to manually divide the string after "something". Is there
> something in (z) flag that could be used to force new token?

The trouble here, as I see it, is that once you've realised the
expression you've got doesn't work as it is (in this case you've got
what looks like an incomplete backquoted substitution), what you decide
to do with it isn't down to the parser, which has given you its
best shot.  This is compounded by the fact that zsh doesn't understand
incomplete expressions --- there's nothing like parse-partial-sexp ---
so you can't take them apart, and there's nothing that does
token-by-token splitting rather than word-by-word splitting.  What's
more, ${(Q)a} doesn't even understand complete backquote expressions
since it only deals with quotes with no side effect.

You could just split the expression using non-syntactic word splitting,
and take the words after the first as your new input.

If instead what you want to do is remove the backquote, then I think
you're going to have to do that by hand.

pws


  reply	other threads:[~2016-09-02 16:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-02 16:27 Sebastian Gniazdowski
2016-09-02 16:43 ` Peter Stephenson [this message]
2016-09-02 19:37   ` Sebastian Gniazdowski

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=20160902174354.471c308e@pwslap01u.europe.root.pri \
    --to=p.stephenson@samsung.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).