std-wcimatch


Synopsis

(std-wcimatch <str> <match>) ;case insensitive wcmatch

Description

Case-insensitive WCMATCH comparison. STD-WCIMATCH works like WCMATCH, but both arguments are converted to uppercase before being compared with WCMATCH.

Note

It is dependent on the current stdlib codepage, which defaults to "iso8859-1". This will only affect characters above (CHR 127).

Example

(std-wcimatch "testname" "Test*") => T

Arguments

match: any valid regular expression suitable for wcmatch.

string: a string

Return Value

T or nil..

Side Effects

None.

Module

(std-require 'STDSTR)

Defined in STDSTR