您好 frnds m 在这个程序中面临问题..cn 有没有告诉我哪里出错了??m nt 能够验证 255.255.255.255 ip 地址
puts "Enter a valid ip address:"
set string [gets stdin]
if {[regexp {^([1-9]|[1]\d{2}|[2][0-4]\d|25[0-5])((\.\d{0,2}|1\d{2}|2[0-4]\d|25[0-5]){3})$} $string match]} {
puts $string
} else {
puts "INVALID-ADDRESS"
}