{Anu Anudeep Anukumar Amar Amaravathi Aruna}
is their any possibility to find the letter "a"in the given list? if yes how?
Answers were Sorted based on User's Feedback
Answer / jincy
puts "searching variable a"
set list_4 [list Anu Anudeep Anukumar Amar Amaravathi Aruna]
foreach item $list_4 {
set elem [split $item ""]
foreach var $elem {
if {$var == "a"} {
puts $item
}
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
set str {Anu Anudeep Anukumar Amar Amaravathi Aruna}
foreach i $str {
if {[regexp {(A)} $i match ] } {
puts $match
}
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / tcl_beginner
set str {Anu Anudeep Anukumar Amar Amaravathi Aruna}
set charstr a
puts [string first $charstr $str]
| Is This Answer Correct ? | 1 Yes | 9 No |
Problems with utf-8 between Mac and PC
Where can find the sample tcl programs?
how to remote log in to a system A to system B ,execute commands in it and collect the log in system A from B using TCL script??
1 Answers Global Edge, Sandvine,
if i give in numbers output should be in characters example : set a 23 o/p twentythree
how to write the startup scripts in winrunner? can any body explain with example code?
How do you check whether a string is palindrome or not using TCL script?
how to increment eacl element in a list ? eg: incrlist {1 2 3} =>2 3 4
Write a proc to increment the ip by the given no. of times. The incremented IPs should be a valid one. Ex: proc <name> {ip no_of_incrments} { body }
How to run a package in tcl
How TCL works
What does Tcl stand for?
how to write a startup script in winrunner