This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.
Help for those learning Tcl or writing their own scripts.
-
NewzNZ
- Halfop
- Posts: 68
- Joined: Thu Mar 05, 2009 5:15 am
-
Contact:
Post
by NewzNZ »
Hi - have searched the forum, but can't quite find what I need.
Just wanting to split a $var in half and insert another character in the middle.
eg. make: $abcdef into: $abc-def
The $var is always 6 characters long, and the split I want to make is always in the middle 3 and 3.
Thanks for any help!
-
SpiKe^^
- Owner
- Posts: 831
- Joined: Fri May 12, 2006 10:20 pm
- Location: Tennessee, USA
-
Contact:
Post
by SpiKe^^ »
Try this...
Code: Select all
set var "[string range $var 0 2]-[string range $var 3 5]"
-
NewzNZ
- Halfop
- Posts: 68
- Joined: Thu Mar 05, 2009 5:15 am
-
Contact:
Post
by NewzNZ »
That works beautifully...thanks SpiKe^^!