主頁(yè) > 知識(shí)庫(kù) > ASP去掉字符串頭尾連續(xù)回車和空格的Function

ASP去掉字符串頭尾連續(xù)回車和空格的Function

熱門標(biāo)簽:地圖標(biāo)注宅基地 西寧公司外呼系統(tǒng)平臺(tái) 智能電銷機(jī)器人適用于哪些行業(yè) 徐州人工智能電銷機(jī)器人好用嗎 長(zhǎng)沙防封電銷卡品牌 武漢營(yíng)銷電話機(jī)器人軟件 騰訊地圖標(biāo)注商戶關(guān)閉 外呼系統(tǒng)還用卡么 地圖標(biāo)注服務(wù)哪家好

復(fù)制代碼 代碼如下:

'去掉字符串頭尾的連續(xù)的回車和空格
function trimVBcrlf(str)
trimVBcrlf=rtrimVBcrlf(ltrimVBcrlf(str))
end function

'去掉字符串開(kāi)頭的連續(xù)的回車和空格
function ltrimVBcrlf(str)
dim pos,isBlankChar
pos=1
isBlankChar=true
while isBlankChar
if mid(str,pos,1)=" " then
pos=pos+1
elseif mid(str,pos,2)=VBcrlf then
pos=pos+2
else
isBlankChar=false
end if
wend
ltrimVBcrlf=right(str,len(str)-pos+1)
end function

'去掉字符串末尾的連續(xù)的回車和空格
function rtrimVBcrlf(str)
dim pos,isBlankChar
pos=len(str)
isBlankChar=true
while isBlankChar and pos>=2
if mid(str,pos,1)=" " then
pos=pos-1
elseif mid(str,pos-1,2)=VBcrlf then
pos=pos-2
else
isBlankChar=false
end if
wend
rtrimVBcrlf=rtrim(left(str,pos))
end function

標(biāo)簽:運(yùn)城 通遼 荊門 普洱 鷹潭 巴彥淖爾 通化 雅安

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP去掉字符串頭尾連續(xù)回車和空格的Function》,本文關(guān)鍵詞  ASP,去掉,字符串,頭尾,連續(xù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP去掉字符串頭尾連續(xù)回車和空格的Function》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于ASP去掉字符串頭尾連續(xù)回車和空格的Function的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章