I wrote this quick tcl script to pull a value out of a field where the length is 8 and I need to know if there is a way to verify the data returned is numeric only. Is there a way to do that?
my tcl script :
set out [lindex $xlateInVals 0]
set len [string length $out]
if [cequal $len “8”] {
set out “Y”
}
set xlateOutVals $out
any ideas?