久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

VBScript InStrRev 函數(shù)

 shuaixinerwei 2012-03-29

VBScript InStrRev 函數(shù)

定義和用法

InStrRev 函數(shù)可返回一個(gè)字符串在另一個(gè)字符串中首次出現(xiàn)的位置,。搜索從字符串的末端開始,,但是返回的位置是從字符串的起點(diǎn)開始計(jì)數(shù)的,。

InStrRev 函數(shù)可返回下面的值:

  • 如果 string1 為 ""(零長(zhǎng)度) - InStr 返回 0
  • 如果 string1 為 Null - InStr 返回 Null
  • 如果 string2 為 "" - InStr 返回 start
  • 如果 string2 為 Null - InStr 返回 Null
  • 如果 string2 沒有找到 - InStr 返回 0
  • 如果在 string1 中找到 string2,,InStr 返回找到匹配字符串的位置,。
  • 如果 start > Len(string1) - InStr 返回 0

提示:請(qǐng)參閱 InStr 函數(shù)

語(yǔ)法

InStrRev(string1,string2[,start[,compare]])
參數(shù) 描述
start 可選的,。規(guī)定每次搜索的起始位置,。默認(rèn)是搜索起始位置是第一個(gè)字符。如果已規(guī)定 compare 參數(shù),,則必須有此參數(shù),。
string1 必需的。需要被搜索的字符串,。
string2 必需的,。需搜索的字符串。
compare

必需的,。規(guī)定要使用的字符串比較類型,。默認(rèn)是 0 ??刹捎孟铝兄担?/P>

  • 0 = vbBinaryCompare - 執(zhí)行二進(jìn)制比較,。
  • 1 = vbTextCompare - 執(zhí)行文本比較。

實(shí)例

例子 1

dim txt,pos
txt="This is a beautiful day!"
pos=InStrRev(txt,"his")
document.write(pos)

輸出:

2

例子 2

dim txt,pos
txt="This is a beautiful day!"
'textual comparison
pos=InStrRev(txt,"B",-1,1)
document.write(pos)

輸出:

11

例子 3

dim txt,pos
txt="This is a beautiful day!"
'binary comparison
pos=InStrRev(txt,"T")
document.write(pos)

輸出:

1

例子 4

dim txt,pos
txt="This is a beautiful day!"
'binary comparison
pos=InStrRev(txt,"t")
document.write(pos)

輸出:

15

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購(gòu)買等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多