{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 |
How TCL works
Which scripting language is better among TCL Perl and Python and why?
Hi all, Is there any certification exams available for TCL and Perl. If so please let me know, my mailid is vpbharathi@gmail.com. Thanks in advance, Bharathi.P
{Anu Anudeep Anukumar Amar Amaravathi Aruna} is their any possibility to find the letter "a"in the given list? if yes how?
Problems with utf-8 between Mac and PC
if i give in numbers output should be in characters example : set a 23 o/p twentythree
How do you check whether a string is palindrome or not using TCL script?
How to Swap 30 & 40 in IP address 192.30.40.1 using TCL script?
Set ip address as 10.30.20.1 write a script to replace the 30 with 40 ?
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 }
Write a program to increment IP address to +10 and verify it is correct ip or not ?? example my ip is 172.122.132.143 increment this ip to +10 and verify it is valid ip or not
Where can find the sample tcl programs?