collapse list reWhat it does:
returns list with all entries that do not match re removedDefined in: /web/philip/tcl/ticket-defs.tcl
Source code:
set out {}
foreach element $list {
if {[regexp $re $element]} {
lappend out $element
}
}
return $out