Open msteveb opened 1 year ago
Adds glob match and regexp match operators to expr. e.g.
if {"abc" =* "a*"} { puts "matched glob" } if {"abc" =~ "^a"} { puts "matched regexp" }
Is this useful enough to be included? Feedback welcome (Needs documentation before merging)
I don't think it's useless, so it must be (at least somewhat) useful, so why not include it?
Adds glob match and regexp match operators to expr. e.g.
Is this useful enough to be included? Feedback welcome (Needs documentation before merging)