zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: Mark van Dijk <lists+zsh@internecto.net>,
	"zsh-users@zsh.org " <zsh-users@zsh.org>
Subject: Re: Regular expression expanding and matching
Date: Sun, 25 Nov 2012 11:30:25 -0800	[thread overview]
Message-ID: <121125113025.ZM15903@torch.brasslantern.com> (raw)
In-Reply-To: <50B23D2D.9060603@internecto.net>

On Nov 25,  4:45pm, Mark van Dijk wrote:
}
} if [[ $somestring -pcre-match \d{4}${todaysday} ]]; then
}     echo "somestring matches today"
} elif [[ $somestring -pcre-match \d{4}${yesterday} ]]; then
}     echo "somestring matches yesterday"
} fi
} 
} Apparently there is no expansion of ${todaysday} and ${yesterday}.

No, that's not what's happening here.  What's happening is that the
backslash is being removed by the shell command line parser before
the regular expression is passed to the PCRE parser.  Try

if [[ $somestring -pcre-match \\d{4}${todaysday} ]]; then
    echo "somestring matches today"
elif [[ $somestring -pcre-match \\d{4}${yesterday} ]]; then
    echo "somestring matches yesterday"
fi

} +./zshtest:9> [[ $somestring -pcre-match \d{4}${todaysday} ]]
} +./zshtest:11> [[ $somestring -pcre-match \d{4}${yesterday} ]]

Hmm, there's something slighly off about that XTRACE output.  Change
the condition to -ef and you can see the real expansion:

+./zshtest:9> [[ 121125 -ef 'd{4}25' ]]
+./zshtest:11> [[ 121125 -ef 'd{4}24' ]]

I'm not sure where the trace output is generated in the case of an infix
condition operator that comes from a module, but I think there is a bug.


      parent reply	other threads:[~2012-11-25 19:30 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-25 15:45 Mark van Dijk
2012-11-25 18:30 ` Vin Shelton
2012-11-25 19:09   ` Mark van Dijk
2012-11-25 18:57 ` Peter Stephenson
2012-11-25 19:18   ` Vin Shelton
2012-11-25 19:30 ` Bart Schaefer [this message]

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=121125113025.ZM15903@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=lists+zsh@internecto.net \
    --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).