You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
485 B
14 lines
485 B
1 year ago
|
PATTERN MATCHES DOESN'T MATCH
|
||
|
|
||
|
"test" "testfoo" "foobar"
|
||
|
"test$" "footest" "test "
|
||
|
"$" anything
|
||
|
"ab*c" "abbbbbbc" "bbbbbbc"
|
||
|
"ab*c" "ac cur" "ab*c"
|
||
|
"^abc" "abcac" "bcabc"
|
||
|
"abc^" "abc^d" "ab*c"
|
||
|
"a[bcd]*e" "abddceab" "eeeaaa"
|
||
|
"a[bcd]*e" "aaaeee" "bcdbcde"
|
||
|
|
||
|
For general info about patterns, type "hpat".
|