Hi Guys,
what is the equivalent for the mIRC tab character in tcl, i tried using \t but it seem that the mirc client isn't understanding it.
Thanks
Code: Select all
.fixcodes
Here you go:SaPrOuZy wrote:Hi Guys,
what is the equivalent for the mIRC tab character in tcl, i tried using \t but it seem that the mirc client isn't understanding it.
Thanks
Code: Select all
.tcl string map {"\011" ""} "dfd sfs sdfs dfew rwe fd"
Tcl: dfdsfssdfsdfewrwefd
Code: Select all
.tcl scan "your_char_here" "%c"
Code: Select all
.tcl format "%03o" [scan "your_char_here" "%c"]