Impressum
GoTo:
Home

Metaphern die Amika Methode   

Lesezeichen [ Info # Paulin ]Donnerstag, 9. September 2010, 03.06 Uhr


 huecker.com # Grundlagen der Programmierung | Tcl Tutorial.
--

 

. String Subcommands - length index range .

[ Previous | Index | Next ]

One feature of Tcl is that commands may have subcommands. String is an example of one of these. The string command treats the first argument as a subcommand. This lesson covers these string subcommands:

string length string
Returns the length of string
string index string index
Returns the char at the index'th position in string
string range string first last
Returns a string composed of the characters from first to last

--

. Example .

   set string "this is my test string"

   puts "There are [string length $string] characters in \"$string\""

   puts "[string index $string 1] is the second character in \"$string\""

   puts "\"[string range $string 5 10]\" are characters between the 5'th and 10'th"
  

--
[ Home | Top ]
[ . Previous | Index | Next . ]
Der Inhalt dieser Seite wurde am 17.02.2007 um 15.21 Uhr aktualisiert.

   huecker dot com * Germany
© 1999, 2010 Franz-Josef Hücker. All Rights Reserved.
Send PagePrint Page