Re: Regular expressions
- From: *** Kusleika <dkusleika@xxxxxxxxx>
- Date: Thu, 20 Sep 2007 08:46:19 -0500
On Wed, 19 Sep 2007 20:14:28 -0400, Ron Rosenfeld <ronrosenfeld@xxxxxxxxxx>
wrote:
On Wed, 19 Sep 2007 17:59:04 -0500, *** Kusleika <dkusleika@xxxxxxxxx> wrote:
On Wed, 19 Sep 2007 12:24:02 -0700, Dave <Dave@xxxxxxxxxxxxxxxxxxxxxxxxx>
wrote:
For example I could set a pattern of "[)(*&^]" how would I code it to
exclude those values?
.Pattern = "[^)(*&\^]"
Note the \ that precedes the second ^. The first ^ defines the character
sequence as negative and the \ escapes the second ^ so it's included in the
negative character sequence.
I don't believe there is any need to escape the ^ in VBScript. Both by
testing, and by documentation, it seems to be unnecessary.
http://msdn2.microsoft.com/en-us/library/ta6y6h4z.aspx
"If the caret character appears in any other position within the list, it
matches itself, that is, it has no special meaning. "
Ron: You're right. Mine was actually excluding the slash too. Thanks for
the correction.
--
***
.
- References:
- Re: Regular expressions
- From: *** Kusleika
- Re: Regular expressions
- From: Ron Rosenfeld
- Re: Regular expressions
- Prev by Date: Re: Different results when running macro vs stepping into macro
- Next by Date: Re: Interest Rate Help
- Previous by thread: Re: Regular expressions
- Next by thread: Re: Regular expressions
- Index(es):