I need to parse through the array and find out a value at particular place in a TCL script
E.g.,
I have a string
set var “00 01 02 03”
I need to parse through the var to find what is there in the 3rd entry (02).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you need is a TCL list. Remember the index counter starts at 0, so pass in 2 to lindex to find the 3rd element