How to extract "information" from "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb" in tcl using a single command?
Answers were Sorted based on User's Feedback
Answer / siddalingesha
set i "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb"
set n [regexp {.*(information).*} $i ma s]
puts "$s"
| Is This Answer Correct ? | 20 Yes | 3 No |
Answer / mak310
puts [string trim "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb" "abc"]
verified result.
works 100% fine.
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / surya
regexp {.*
(information).*} "ccccccccaaabbbbaaaabbinformationabcaaaaaab
bbbbbbccbb" all required
Now the value 'information' is stored in the
variable "required"
| Is This Answer Correct ? | 18 Yes | 5 No |
Answer / alex
regexp information
"aaaaaaaaaaaaaaaaaaainformationhhhhhhjgfjf" arg1
puts $arg1
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / raja
regexp "information"
"ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb" var1
puts $var1
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / pranab
% set
a "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb"
ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb
% set b [string trimleft $a "abc"]
informationabcaaaaaabbbbbbbccbb
% set c [string trimright $b "abc"]
information
OR..
% set output [string trimright [string trimleft
$a "abc"] "abc"]
information
%
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sujoy
puts [regexp -all -inline
information "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbb
bccbb"]
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / amar
set a "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb"
set b [string range $a 21 31]
puts $b
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ch.venkatesh
set i "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb"
set n [regexp {([A-Za-z]*)} "information" a]
puts "$a"
| Is This Answer Correct ? | 0 Yes | 0 No |
How to run a package in tcl
How do you find the length of a string without using string length command in TCL??
1.What are the different ways to initialize a variable. How to differentiate global and local variables, explain it through a simple tcl program. 2.Create a list of week days and print the first and last character of each day using foreach command 3.Can you write a small program to verify the given input is file or directory.Before checking, just ensure that the file/dir exists or not in the given path. If the given input is a file, findout the size and verify that the file has all read ,write and execute permission.
Set ip address as 10.30.20.1 write a script to replace the 30 with 40 ?
Test case on windows calculator?
Problems with utf-8 between Mac and PC
write a regular expressions to fetch all the valid ip's
How TCL works
WHAT IS TCL?
Which scripting language is better among TCL Perl and Python and why?
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,
How to extract "information" from "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb" in tcl using a single command?