Tcl/tkstring几个常用命令闲聊 tcl tk如何安装

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

命令

说明

string bytelength str

返回用于存储字符串的字节数,由于UTF8编码的原因,这个长度可能与string length返回长度不一样

string compare ?-nocase? ?-length len?Str1 str2

根据词典顺序比较两个字符串,nocase表示忽略大小写,length表示比较前n个字符,如果相同返回值为0,如果str1靠前就返回-1,对于其他情况返回1

string equal ? –nocase? Str1str2

比较字符串,如果相同返回1,否则-1,使用nocase来表示忽略大小写

string first str1 str2

返回str2中str1第一次出现的位置,如果没有的话,就返回-1。

string is class ?-strict? ?-failindexvarname? string

如果string属于某个class就返回,如果指定了strict,那么就不匹配空字符串,否则总是要匹配,如果指定了failindex,就会将在string中阻止其称为class一员的字符串索引赋给varname,

string last str1 str2

返回str2中str1最后一次出现的位置,如果没有出现就返回-1

string length str

返回string中的字符个数

string map ?-nocase? charMapstring

返回一个根据charmap中输入输出列表将string中的字符进行映射后产生的字符串。

string match pattern str

如果str匹配pattern就返回1,否则返回0,

string ranger str i j

返回字符串中从i到j的部分。

string repeat str count

返回将str重复count次的字符串

string replace str first last?newstr?

返回一个通过把从first到last字符串替换为newstr的新字符串,或是返回空

string tolower string ?first??last?

返回string的小写形式,first和last决定了字符串位置

string totitle string ?first??last?

将第一个字符替换为大写,其他为小写,first和last决定了字符串位置

string toupper string ?first??last?

返回string的大写格式,first和last决定了字符串位置

string trim string?chars?

从string两端除去chars中指定的字符,chars默认空

string trimleft string?chars?

从string的左端除去chars中指定的字符,chars默认为空

string trimright string?chars?

从string的右端除去chars指定的字符,chars默认为空

string wordend str ix

返回str中在索引ix位置包含的字符的单词之后的字符的索引位置

string wordstart str ix

返回str中在索引ix位置包含字符串的单词中第一个字符的索引位置。

  

爱华网本文地址 » http://www.aihuau.com/a/25101011/94798.html

更多阅读

湘源控规常用快捷键 湘源控规常用命令

这些天做了许多繁杂无比的cad图层整理与面积统计,所以重温了下湘源控规,发现很多操作通过湘源可以大大简化,个人感觉很有用,给大家推荐一下。OL图层孤立湘源代表性快捷键,可以孤立你想要的一个或几个图层。再次OL恢复。很实用,所以前置

电脑“开始-运行”的常用命令及用法!很有用! 常用运行命令

电脑“开始-运行”的常用命令及用法!很有用!——简介想成为电脑高手吗?那么下面的几个“开始—运行”常用命令至少您要了解!这些命令甚至在电脑出现疑难杂症您束手无策的时候能给你带来惊喜哦!电脑“开始-运行”的常用命令及用法!很有用!

怀孕几个月开始听胎教音乐 怀孕几个月有奶水

虽说很多准妈妈为了宝宝的教育,早从胎教就开始抓起,其中音乐胎教是最常用的手法之一。但怀孕几个月听胎教音乐好,准妈妈却一直拿捏不准。这实则要从胎儿的生理发育着手,知道宝宝在各个阶段的身体发育情况,有的放矢地进行音乐胎教,如此方可

书法练习-《3500个常用汉字》

书法练习-《3500个常用汉字》最近用了二十多天时间,把国家语言文字委员会和国家教委颁布的3500个常用汉字,包括相应的繁体字、异体字共约5000个字又练习了一遍。就写的字来说比以往看着是顺眼了些,其实最重要的收获是在认识这些常用汉

声明:《Tcl/tkstring几个常用命令闲聊 tcl tk如何安装》为网友独守寂寥分享!如侵犯到您的合法权益请联系我们删除