tcl split string with variables

329 Views Asked by At

how can split the name in tcl?

NEW in ARCHIVE XVID/J/JURASSIC.WORLD 

path is not always the same, it may also be so

/XVID-BOXSET/007.A.VIEW.TO.A.KILL 

and set this as variable, one variable set the name and one the path.

I need the following variables:

Name example : JURASSIC.WORLD bzw 007.A.VIEW.TO.A.KILL

Path example : XVID/J/ bzw /XVID-BOXSET/

1

There are 1 best solutions below

4
On
set pn [lindex {NEW in ARCHIVE XVID/J/JURASSIC.WORLD} 3]
# -> XVID/J/JURASSIC.WORLD
set path [file dirname $pn]
# -> XVID/J
set name [file tail $pn]
# -> JURASSIC.WORLD