Good Day,
We would like to nullify a string when it contains the rca substring. We came up with the following code:
set string {XXrcaXX}
set isThere [regexp "rca" $string]
if {$isThere == 1} {
set string ""
}
Anybody has a simpler version?
Thank You,
Dan