hmm i got a string ..? and that string contains spaces but once i use lindex or lrange the string the spaces are lost so how do i use lindex or lrange without lossing spaces ? or any other char ?
[lindex $arg 0] returns the first element in $arg, but its a list, so to turn it into a string change it to [lindex [split $arg] 0]
[lrange $arg 0 end] returns the whole line in $arg (from first letter to last letter, its also a list. to turn it into a string change it to [join [lrange $arg 0 end]]
dude i know its only the from the 4th that i need it but for my space problem ...?
don't have char problem but a space problem its for file path and if a file path like windows contains spaces ..? also it could contain more then one space and its to add it from channel not the fetch it from hd so ..