By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!v:\> echo %@regex[(?i)foo,FOO]
1
v:\> echo %@regex[foo,FOO]
0
On Wed, 10 Aug 2011 00:53:49 -0400, fpefpe <> wrote:
|Hello -- Is there a way to specify in a regular expression template
|that the match is case neutral?
That depends on the regex syntax you've chosen (OPTION). With the PERL syntax,
Code:v:\> echo %@regex[(?i)foo,FOO] 1 v:\> echo %@regex[foo,FOO] 0
On Wed, 10 Aug 2011 00:53:49 -0400, fpefpe <> wrote:
That depends on the regex syntax you've chosen (OPTION). With the PERL syntax,
Code:v:\> echo %@regex[(?i)foo,FOO] 1 v:\> echo %@regex[foo,FOO] 0