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"
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位置包含字符串的单词中第一个字符的索引位置。 |