asp 裡比較字串 10

時間 2025-01-16 00:35:16

asp 裡比較字串

1樓:網友

*remove_indc_id=request(" remove_indc_id ")

這個你沒有寫的話應該就是的問題了。*/

如果你要每個匹配的記錄都有反映的話,就必須在loop迴圈裡面對匹配的記錄加個操作語句。如:

dim ii=0

do while not rs_

dc_flag = rs_flag("flag_dc_id")'rs_flag是記錄集,flag_dc_id是欄位名。

if dc_flag = remove_indc_id then'remove_indc_id是別一頁面傳遞過來的引數。

i=i+1flags = 1

else flags = 0

end if

rs_loop rs_

set rs_flag = nothing

2樓:網友

你request(" remove_indc_id ")了沒有?

你只說不對,但你沒說清不對的情況,是隻彈出"您沒有足夠許可權"呢,還是有其他的錯誤提示呢?

access+asp字元比較

3樓:網友

那你應該是答案和資料庫中的欄位相比較把?

應該是這樣的格式:if rs("ta")=ta then。。。

不過要注意欄位的型別,所以if cstr(rs("ta"))cstr(ta) then。。。就一定可以。

asp 如何對比字串並且高亮顯示出不同的地方

4樓:網友

我的思路是逐個取memo2的字元然後和1比較,下面給出爛含比較demo,解釋我也不太寫得好,這能具體到這樣了。

language="vbscript" codepage="65001"%>

dim memo1,memo2

memo1 = asdfg中文中hj12 e"

memo2 = accfg中1國hd32cdet"

str = 儲存高亮的字串。

exc = n" '用於標記之前的字元是否出現過不同的而且未做高亮封閉的。

for i=1 to len(memo2)

if len(memo1) if exc = n" then '未出現過或者已經閉合新加高亮樣式。

str = str & mid(memo2,i,1)

exc = y" '

else '出現過未閉合繼續加。

str = str & mid(memo2,i,1)

end if

elseif mid(memo1,i,1) =mid(memo2,i,1) then

if exc = y" then

str = str &

mid(memo2,i,1)

exc = n"

elsestr = str & mid(memo2,i,1)

end if

end if

nextif exc = y" then

str = str &

end if

asp上的字串處理

5樓:網友

寫個函式來過濾。

function filter(txt)

if txt = "" then

filter = ""

exit function

end if

if instr(txt,"<") >0 or instr(txt,">") >0 then txt = ""

如果需要過濾的字元比較多,就用select casefilter = txt

end function

<%yctype = request("type")yctype = filter(yctype)%>

這樣就ok了。

asp處理字串問題

6樓:網友

如果你不瞭解ascii碼值的用法,那就用最原始的辦法,擷取字串第乙個字元,然後有for迴圈26次,與26個英文字母對比,如果相同就返回true,也就是說第乙個是字母,至於後面的名稱你可以擷取字串得到。

辦法是老了點,但思路是明瞭了,不會有難點,基礎的js就能解決,goodluck

asp字串替換

7樓:流香羽

假設:你的a欄位記錄集變數為rs

適用**:if instr(rs("a"), "大海") >0 then"我知道"

elsers("a")

end if

未結束的字串常量,ASP 未結束的字串常量

程式不完整!if request action login thenusername request username password request password set rs server.createobject adodb.recordset rs.open sql,conn,3,3 ...

字串大小比較,字串大小比較的規則

如果單純比較長度,直接呼叫類似於strlen 之類的函式就可以,加以比較即可.如果比較字串的大小,則比較的是字元的ascii編碼的大小.你搜尋一下ascii碼表就可以得知每乙個ascii字元的大小.參考http www.wpyz.net noip 11 1.asp在比較時,設定乙個計數器,從零開始,...

asp處理字串 去掉多餘的逗號

使用正則表在式 dim regex,str1 str1 set regex new regexp 建立正規表示式。regex.pattern 設定模式。正規表示式regex.ignorecase true 設定是否區分大小寫。str1 regex.replace str1,把三個以上連續,替換成 r...