从经典ASP中的字符串中获取字符

时间:2014-02-04 02:28:57

标签: asp-classic

请有人帮助我如何仅显示括号内容(bbbb)? 以下代码显示括号外的内容,我无法弄明白......

    dim strText, remove
strText = "aaaa(bbbb)cccc"

Dim str1, str2

str1 = InStr(strText, "(") 
Do While str1 > 0 
    str2 = InStr(str1 + 1, strText, ")") 
    If str2 > 0 Then 
        strText = Left(strText, str1 - 1) & Mid(strText, str2 + 1) 
    Else 
        Exit Do 
    End If 
    str1 = InStr(strText, "(") 
Loop 

remove = strText 
response.write(remove)

1 个答案:

答案 0 :(得分:0)

strYouAreLookingFor = mid(strText, InStr(strText, "("), (InStrRev(strText, ")") - InStr(strText, "(") + 1) )