VBS教程:函数-InStrRev 函数
程序员文章站
2022-06-03 11:02:03
instrrev 函数返回某字符串在另一个字符串中出现的从结尾计起的位置。instrrev(string1, s...
instrrev 函数
返回某字符串在另一个字符串中出现的从结尾计起的位置。
instrrev(string1, string2[, start[, compare]])
参数
string1
必选项。接受搜索的字符串表达式。
string2
必选项。被搜索的字符串表达式。
start
可选项。数值表达式,用于设置每次搜索的开始位置。如果省略,则默认值为 -1,表示从最后一个字符的位置开始搜索。如果 start 包含 null,则出现错误
compare
可选项。在计算子字符串时,指示要使用的比较类型的数值。如果省略,将执行二进制比较。有关数值,请参阅“设置”部分。
设置
compare 参数可以有以下值:
常数 | value | 描述 |
---|---|---|
vbbinarycompare | 0 | 执行二进制比较。 |
vbdatabasecompare | 2 | 执行基于包含在数据库(在此数据库中执行比较)中的信息的比较。 |
返回值
instrrev 返回以下值:
如果 | instrrev 返回 |
---|---|
string1 为零长度 | 0 |
string1 为 null | null |
string2 为零长度 | start |
string2 为 null | null |
string2 没有找到 | 0 |
在 string1 中找到 string2 | 找到匹配字符串的位置 |
start > len(string2) | 0 |
说明
下面的示例利用 instrrev 函数搜索字符串:
dim searchstring, searchchar, mypossearchstring ="xxpxxpxxpxxp" ' string to search in.searchchar = "p" ' search for "p".mypos = instrrev(searchstring, searchchar, 10, 0) ' a binary comparison starting at position 10. returns 9.mypos = instrrev(searchstring, searchchar, -1, 1) ' a textual comparison starting at the last position. returns 12.mypos = instrrev(searchstring, searchchar, 8) ' comparison is binary by default (last argument is omitted). returns 0.
注意 instrrev 函数的语法与 instr 函数的语法并不一样。
上一篇: 常用类之TCP连接类-socket编程
下一篇: c#与mysql的连接
推荐阅读
-
php函数指定默认值方法的小例子_PHP教程
-
php中Curl函数常用的两个例子_PHP教程
-
php中常用文件操作读写函数介绍_PHP教程
-
做了CDN获取用户真实IP的函数代码(PHP与Asp设置方式)_PHP教程
-
PHP图片缩小函数_PHP教程
-
PHP中SimpleXML函数用法分析,phpsimplexml_PHP教程
-
Web端PHP代码函数覆盖率测试解决方案_PHP教程_编程技术
-
[PHP源码阅读]array_pop和array_shift函数,jsarraypopshift_PHP教程
-
PHP array_multisort() 函数的深入解析_PHP教程
-
PHP 自定义错误处理函数的使用详解_PHP教程