How to extract "information" from "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb" in tcl using a single command?
Answers were Sorted based on User's Feedback
Answer / ch.venkatesh
set var "ccccccccaaabbbbaaaabbinformationabcaaaaaaabbbbbbbccbb"
#set var1 [regexp "information" $var a]
#puts $a
puts [string trim $var "abc"]
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / indu sharma
set a "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb"
set b [strip $a "cba"]
puts $b
| Is This Answer Correct ? | 0 Yes | 12 No |
How do you find the length of a string without using string length command in TCL??
Where can find the sample tcl programs?
Problems with utf-8 between Mac and PC
{Anu Anudeep Anukumar Amar Amaravathi Aruna} is their any possibility to find the letter "a"in the given list? if yes how?
WHAT IS TCL?
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
if i give in numbers output should be in characters example : set a 23 o/p twentythree
How TCL works
how to increment eacl element in a list ? eg: incrlist {1 2 3} =>2 3 4
How do you check whether a string is palindrome or not using TCL script?
how to write a startup script in winrunner
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