tokenize_Tracy python tokenize模块

command (MEL)Only available inMEL

tokenize

In categories: Language, Strings

No Frames

Go to: Synopsis. Return value. MEL examples.

Synopsis

tokenize string [string] string[]

tokenize is NOT undoable, NOT queryable, andNOT editable.

This command will split the first string argument up accordingto split characters provided in the optional second argument. Ifthis argument is not provided, tokenize will use a default splitstring consisting of whitespace characters. The input string isscanned for substrings (tokens) which are separated by any of thesplit characters. Note: tokenize does not match the entire splitstring; it matches any character in the string. The resulting tokenstrings are put into the third argument which is a string array.The return value of this procedure is the number of tokens intowhich the original string is divided.

这个命令根据第二个字符串做参考将第一个字符串进行分割。如果没有提供第二个参考字符串,系统将默认用空格分割第一个字符串。

注:分割的依据并非第二个字符串整体,而是第二个字符串中的任意字符。

由此产生的分割好的字符串存储在第三个字符串数组中。在此过程中的返回值是一个整数值,为分割了多少个字符串。


Return value

intNumber of tokens


MEL examples

string $buffer[];
$numTokens = `tokenize "A/B//C/D" "//" $buffer`;
// Buffer will contain 4 strings, not 2: "A", "B", "C", "D"
字符串将被分割为四个字符串(不是两个),分别为:"A", "B", "C", "D"
// and $numTokens will be 4.
返回值为4
string $buffer[];
$numTokens = tokenize("Mildred Pierce Femme Fatale", $buffer);
// Buffer will contain 4 strings: "Mildred", "Pierce", "Femme", and "Fatale."
字符串将被分割为四个字符串,分别为:"Mildred", "Pierce", "Femme", 和 "Fatale"
// and $numTokens will be 4.
返回值为4
string $buffer[];
$numTokens = `tokenize "testing=non-default separators" "=" $buffer`;
// Buffer will contain 2 strings: "testing" and "non-default separators."
字符串将被分割为两个字符串,分别为:"testing" 和 "non-default separators"
// and $numTokens will be 2.
返回值为2

  

爱华网本文地址 » http://www.413yy.cn/a/25101017/359207.html

更多阅读

非黄钻怎么改变QQ空间模块文字颜色 qq黄钻有什么用

改变QQ空间模块文字颜色,炫出自己个性文字。非黄钻怎么改变QQ空间模块文字颜色——工具QQ空间6.0非黄钻怎么改变QQ空间模块文字颜色——步骤/方法非黄钻怎么改变QQ空间模块文字颜色 1、首先鼠标指向空间快速设置,就会出现一个下拉菜

怎么在qq空间添加视频模块? qq空间视频模块

怎么在qq空间添加视频模块?——简介 qq空间数量是惊人的,同样有大量的网友希望能在自己的空间里加上自己喜欢的视频。但是大部分童鞋们还不知道怎么添加,网上的方法很多。参差不齐。我也是一个空间密。没事就倒腾空间,在空间里添加视频

HC-05蓝牙模块与单片机的使用 hc05蓝牙模块

HC-05蓝牙模块与单片机的使用——简介关于HC-05蓝牙模块如何搭配单片机使用,还是以Arduino UNO升级改进版Manduino UNO为例,进行说明。HC-05蓝牙模块适用于各种3.3V的单片机系统,模块可以使用AT指令设置波特率配对、密码用户信息等,默

破解phpweb如何安装所需模块 phpweb破解post.php

破解phpweb如何安装所需模块——简介 phpweb(成品网站)现在用的人已经很多了,有正版授权的,也有所谓破解版的。当然在使用的过程中就能发现正版与破解版的区别了,相信用过的人都有体会,破解的不能升级、模块不能安装……这些问题都困扰着

声明:《tokenize_Tracy python tokenize模块》为网友透过爱情看你分享!如侵犯到您的合法权益请联系我们删除