diff options
author | Steve Bennett <steveb@workware.net.au> | 2023-09-09 08:55:20 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2024-03-21 10:44:34 +1000 |
commit | de64d2d836fcbf13e71be29d73684374170da8aa (patch) | |
tree | f2e2522fcc1f914a8d087c1c550e854e981eb994 /tests/stringmatch.test | |
parent | e23aea23d3e5cf6ed84f62f0d68a827f1d2780b6 (diff) | |
download | jimtcl-expr-glob-regexp-op.zip jimtcl-expr-glob-regexp-op.tar.gz jimtcl-expr-glob-regexp-op.tar.bz2 |
expr: add support for =* and =~expr-glob-regexp-op
glob match and regexp match operators
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'tests/stringmatch.test')
-rw-r--r-- | tests/stringmatch.test | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/stringmatch.test b/tests/stringmatch.test index f0eab2a..c15acd1 100644 --- a/tests/stringmatch.test +++ b/tests/stringmatch.test @@ -230,4 +230,16 @@ test stringmatch-7.4 {null in pattern} { string match *b\[\0a\]r* foobar } 1 +test stringmatch-8.1 {string match operator =*} { + expr {"abc" =* "a*"} +} 1 + +test stringmatch-8.2 {string match operator =*} { + expr {"abc" =* "b*"} +} 0 + +test stringmatch-8.3 {string match operator =*} { + expr {"abc" =* {*[bB]c}} +} 1 + testreport |