top of page
networktestinggenius.tk
Your networking tutor
Exclusive networking testing notes
Learn Networking & Testing topics

Mac add conversion
set str [split {00aabbccddee} {}]
set list {}
set i 0
foreach {s m} $str {
append list $s$m-
}
set list [string trimright $list -]
puts $list
bottom of page