欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時(shí)間:2008年12月22日 00:45:48   作者:  
去掉字符串頭尾的連續(xù)的回車(chē)和空格 去掉字符串開(kāi)頭的連續(xù)的回車(chē)和空格 去掉字符串末尾的連續(xù)的回車(chē)和空格

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

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

'去掉字符串開(kāi)頭的連續(xù)的回車(chē)和空格
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ù)的回車(chē)和空格
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

相關(guān)文章

最新評(píng)論