{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 |
Set ip address as 10.30.20.1 write a script to replace the 30 with 40 ?
Problems with utf-8 between Mac and PC
Test case on windows calculator?
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,
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 }
if i give in numbers output should be in characters example : set a 23 o/p twentythree
Which scripting language is better among TCL Perl and Python and why?
What does Tcl stand for?
How TCL works
How to extract "information" from "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb" in tcl using a single command?
WHAT IS TCL?