set componentList [list Hello]
foreach component $componentList {
if {[regexp -nocase -- $component HELLO]} {
puts "$component == HELLO"
} else {
puts "$component != HELLO"
}
}
foreach component $componentList {
if {[regexp -nocase -- $component HELLO]} {
puts "$component == HELLO"
} else {
puts "$component != HELLO"
}
}
No comments:
Post a Comment
comment here