Skip to content

Instantly share code, notes, and snippets.

@Pyker
Created November 22, 2014 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pyker/de2a76f3a71e4e5a0018 to your computer and use it in GitHub Desktop.
Save Pyker/de2a76f3a71e4e5a0018 to your computer and use it in GitHub Desktop.
Split string, skipping empty elements
proc split_noempty {args} {
set ret {}
foreach elem [split {*}$args] {
if {$elem != ""} {
lappend ret $elem
}
}
return $ret
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment