How increment a character? For example, I give 'a' and I
should get 'b'.
Answers were Sorted based on User's Feedback
Answer / siddalingehsa
set ch a
set l [scan $ch %c]
incr l
set m [format %c $l]
puts "$m"
| Is This Answer Correct ? | 26 Yes | 1 No |
set character "a"
set incremented_char [format %c [expr {[scan $character
%c]+1}]]
puts "Character before incrementing '$character' : After
incrementing '$incremented_char'"
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / raja
set chr "a"
set asval [scan $chr %c]
puts [format %c [expr $asval +1]
| Is This Answer Correct ? | 1 Yes | 0 No |
What does Tcl stand for?
How do you check whether a string is palindrome or not using TCL script?
write a program to the given ip is valid private address or not(192.168.1.1)?
write a regular expressions to fetch all the valid ip's
how to write the startup scripts in winrunner? can any body explain with example code?
How do you find the length of a string without using string length command in TCL??
Which scripting language is better among TCL Perl and Python and why?
How to extract "information" from "ccccccccaaabbbbaaaabbinformationabcaaaaaabbbbbbbccbb" in tcl using a single command?
how to write a startup script in winrunner
How increment a character? For example, I give 'a' and I should get 'b'.
Test case on windows calculator?
How to get the next ip for given ip ex: 10.10.10.1 -> 10.10.10.2 ex: 10.10.10.255 -> 10.10.11.0