熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

ASP技巧:ASP返回某字符串最後出現的位置

2022-06-13   來源: .NET編程 

  <%
dwwwStr= "<div>dwwwcn</div><div>wwwdwwwcn</div>設計家園"
dwwwStr= InStrRev(dwwwStr"</div>")
responsewrite dwwwStr
%>

  InstrRev
描述
返回某字符串在另一個字符串中出現的從結尾計起的位置
語法
InstrRev(string string[ start[ compare]])
InstrRev 函數的語法有以下參數

  參數 描述
string 必選接受搜索的字符串表達式
string 必選被搜索的字符串表達式
start 可選數值表達式用於設置每次搜索的開始位置如果省略則默認值為 表示從最後一個字符的位置開始搜索如果 start 包含 Null則出現錯誤
compare 可選在計算子字符串時指示要使用的比較類型的數值如果省略將執行二進制比較有關數值請參閱“設置”部分

  

  
設置
compare 參數可以有以下值
常數 Value 描述
vbBinaryCompare 執行二進制比較
vbTextCompare 執行文本比較
vbDatabaseCompare 執行基於包含在數據庫(在此數據庫中執行比較)中的信息的比較

  
返回值
InStrRev 返回以下值
如果 InStrRev 返回
string 為零長度
string 為 Null Null
string 為零長度 start
string 為 Null Null
string 沒有找到
在 string 中找到 string 找到匹配字符串的位置
start > Len(string)

  
說明
請注意 InstrRev 函數的語法不同於 Instr 函數的語法


From:http://tw.wingwit.com/Article/program/net/201311/14073.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.