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

#Write a regsub command to replace all “.” in ip address to “_”
set ip "192.168.10.1"
set b [string map {. _} $ip]
puts $b
bottom of page