hasChar(tkWidgets)
hasChar()所属R语言包:tkWidgets
String Prefix and Suffix Checking
字符串前缀和后缀检查
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions return a function for determining if a given prefix, suffix, or set of characters passed to this function exists in a character string passed to the returned function.
这些函数返回一个确定是否存在一个给定的前缀,后缀,或传递给这个函数的字符集,通过返回的函数字符串的功能。
用法----------Usage----------
hasChar(toCheck, what = "")
hasPrefix(aPrefix)
hasSuffix(aSuffix)
参数----------Arguments----------
参数:aPrefix
character string to be used as the prefix to be checked for
被用来作为前缀要检查的字符串
参数:aSuffix
character string to be used as the suffix to be checked for
被用来作为后缀要检查的字符串
参数:toCheck
toCheck a character string to be used to check to see if it exists in a character string passed to the returned function
toCheck字符串被用来检查,看看是否存在一个字符串传递到返回的函数
参数:what
what a character string defining whether toCheck will be used as a prefix (what = "prefix"), suffix (what = "suffix"), or a set of characters (what = "") to check the character string passed to the returned function
what定义,是否toCheck将被用于(=“前缀”)作为前缀,后缀字符串(=“后缀”),或一组字符(=“”)检查字符串传递到返回的函数
Details
详情----------Details----------
The prefix (or suffix) is passed to hasPrefix (or hasSuffix) and then the returned function can be used to check for the existence of that prefix (suffix) in a string passed to that function.
前缀(或后缀)被传递到hasPrefix(hasSuffix),然后返回的功能,可用于检查在一个字符串传递给该函数的前缀(后缀)的存在。
hasChar is a more general function that determines the existence of prefix, sufix, or a set of a characters in a character string passed to the returned function.
hasChar是一个更普遍的功能,决定了存在的前缀,sufix,或传递到返回的函数字符串中的字符集。
值----------Value----------
A function which itself returns a logical (of length 1) indicating if the prefix/suffix is found (TRUE) or not.
返回一个函数,它本身的逻辑(长度为1)表示,如果被发现的前缀/后缀(TRUE)或不。
作者(S)----------Author(s)----------
Jianhua (John) Zhang
参见----------See Also----------
pickFiles
pickFiles
举例----------Examples----------
# Function for checking for a prefix "xxx" :[检查一个前缀“XXX”的功能:]
chkPfun <- hasChar("xxx", what = "prefix")
# Function for checking for a suffix ".tex" :[后缀“TEX”。检查的功能:]
chkSfun <- hasChar(".tex", what = "suffix")
chkPfun("xxx.tex")
chkPfun(".xxx")
chkSfun("xxx.tex")
chkSfun("yyyyy")
chkSfun("yxxx.text")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|