JAVA 因简洁而美丽,因有效而动人 善待JAVA这颗种子的人,必将得到她的福荫

tcl/tk实例详解——string(二)

上一篇 / 下一篇  2009-05-23 00:33:19 / 个人分类:Tcl

这里对string命令中的几个子命令使用实例进行一些解释,以便于更加容易理解string命令中的各个子命令,本文仅对以下几个string命令进行实例解析。分别是repeat、replace、reverse、tolower、totitle、toupper、trim、trimleft、trimright、wordend和wordstart几个子命令。
 
    string repeatstring count
    非常简单,返回一个把string重复count次的字符串。
    % string repeat "This" 3
    ThisThisThis
 
    string replacestring first last ?newstring?
    也很简单,使用newstring替换string中的first到last的字符串,如果没有newstring,就是使用空代替。
    % string replace "This is a tcltk example" 10 14 TCLTK
    This is a TCLTK example
    如果没有newstring:
    % string replace "This is a tcltk example" 10 14
    This is a  example
 
    string reversestring
    返回string的反序字符串:
    % string reverse "This is a tcltk example"
    elpmaxe ktlct a si sihT
 
    string tolowerstring ?first? ?last?
    string totitlestring ?first? ?last?
    string toupperstring ?first? ?last?
    这三个命令放在一起,是因为三个命令的格式完全相同,只是实现了不同的操作。
    将一个字符串全部变为小写形式:
    % string tolower "This is a tcltk example"
    this is a tcltk example
    将一个字符串全部变为大写形式:
    % string toupper "This is a tcltk example"
    THIS IS A TCLTK EXAMPLE
    将一个字符串里面开头的第一个字母转换为大写形式,其他字符转化为小写形式:
    % string totitle "this is a TCLTK example"
    This is a tcltk example
    first和last指定了转换的范围,操作与上述完全相同,只是对字符串的作用范围不同。
 
    string trimstring ?chars?
    string trimleftstring ?chars?
    string trimrightstring ?chars?
    这三个命令实现的功能类似,都是去掉chars字符,只是操作的位置有所区别。如果没有指定chars字符,则去掉空白符(包括空格符、制表符、换行符、回车符)。trim对字符串开头和结尾都操作,trimleft只对字符串开头操作,trimright只对字符串结尾操作。
    % string trim "!!This is a tcltk example!!" !
    This is a tcltk example
    % string trimleft "!!This is a tcltk example!!" !
    This is a tcltk example!!
    % string trimright "!!This is a tcltk example!!" !
    !!This is a tcltk example
 
    string wordendstring charIndex
    string wordstartstring charIndex
    这两个命令类似,wordend是找出给定索引的字符所在的单词的下一个单词的第一个字符的索引,wordstart是找出给定索引的字符所在的单词的第一个字符的索引。用语言描述比较难理解,下面举例说明就非常清晰了:
    % string wordend "This is a tcltk example" 12
    15
    12索引为tcltk中的l字符,那么返回的结果就是l所在的词tcltk的下一个词example中的第一个字符e的索引,即15。
    % string wordstart "This is a tcltk example" 12
    10
    12索引为tcltk中的l字符,那么返回的结果就是l所在的词的第一个字符t的索引,即10。

TAG: Tcl tcl -string

 

评分:0

我来说两句

Open Toolbar