黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP中一個(gè)字符串處理類(lèi)
 代碼如下:

<%
class stringoperations
''****************************************************************************
'''' @功能說(shuō)明: 把字符串換為char型數(shù)組
'''' @參數(shù)說(shuō)明:  - str [string]: 需要轉(zhuǎn)換的字符串
'''' @返回值:   - [array] char型數(shù)組
''****************************************************************************
public function tochararray(byval str)
 redim chararray(len(str))
 for i = 1 to len(str)
  chararray(i-1) = mid(str,i,1)
 next
 tochararray = chararray
end function
''****************************************************************************
'''' @功能說(shuō)明: 把一個(gè)數(shù)組轉(zhuǎn)換成一個(gè)字符串
'''' @參數(shù)說(shuō)明:  - arr [array]: 需要轉(zhuǎn)換的數(shù)據(jù)
'''' @返回值:   - [string] 字符串
''****************************************************************************
public function arraytostring(byval arr)
 for i = 0 to ubound(arr)
  strobj = strobj & arr(i)
 next
 arraytostring = strobj
end function
''****************************************************************************
'''' @功能說(shuō)明: 檢查源字符串str是否以chars開(kāi)頭
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @參數(shù)說(shuō)明:  - chars [string]: 比較的字符/字符串
'''' @返回值:   - [bool]
''****************************************************************************
public function startswith(byval str, chars)
 if left(str,len(chars)) = chars then
  startswith = true
 else
  startswith = false
 end if
end function
''****************************************************************************
'''' @功能說(shuō)明: 檢查源字符串str是否以chars結(jié)尾
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @參數(shù)說(shuō)明:  - chars [string]: 比較的字符/字符串
'''' @返回值:   - [bool]
''****************************************************************************
public function endswith(byval str, chars)
 if right(str,len(chars)) = chars then
  endswith = true
 else
  endswith = false
 end if
end function
''****************************************************************************
'''' @功能說(shuō)明: 復(fù)制n個(gè)字符串str
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @參數(shù)說(shuō)明:  - n [int]: 復(fù)制次數(shù)
'''' @返回值:   - [string] 復(fù)制后的字符串
''****************************************************************************
public function clone(byval str, n)
 for i = 1 to n
  value = value & str
 next
 clone = value
end function
''****************************************************************************
'''' @功能說(shuō)明: 刪除源字符串str的前n個(gè)字符
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @參數(shù)說(shuō)明:  - n [int]: 刪除的字符個(gè)數(shù)
'''' @返回值:   - [string] 刪除后的字符串
''****************************************************************************
public function trimstart(byval str, n)
 value = mid(str, n+1)
 trimstart = value
end function
''****************************************************************************
'''' @功能說(shuō)明: 刪除源字符串str的最后n個(gè)字符串
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @參數(shù)說(shuō)明:  - n [int]: 刪除的字符個(gè)數(shù)
'''' @返回值:   - [string] 刪除后的字符串
''****************************************************************************
public function trimend(byval str, n)
 value = left(str, len(str)-n)
 trimend = value
end function
''****************************************************************************
'''' @功能說(shuō)明: 檢查字符character是否是英文字符 a-z or a-z
'''' @參數(shù)說(shuō)明:  - character [char]: 檢查的字符
'''' @返回值:   - [bool] 如果是英文字符,返回true,反之為false
''****************************************************************************
public function isalphabetic(byval character)
 asciivalue = cint(asc(character))
 if (65 <= asciivalue and asciivalue <= 90) or (97 <= asciivalue and asciivalue <= 122) then
  isalphabetic = true
 else
  isalphabetic = false
 end if
end function
''****************************************************************************
'''' @功能說(shuō)明: 對(duì)str字符串進(jìn)行大小寫(xiě)轉(zhuǎn)換
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @返回值:   - [string] 轉(zhuǎn)換后的字符串
''****************************************************************************
public function swapcase(str)
 for i = 1 to len(str)
  current = mid(str, i, 1)
  if isalphabetic(current) then
   high = asc(ucase(current))
   low = asc(lcase(current))
   sum = high + low
   return = return & chr(sum-asc(current))
  else
   return = return & current
  end if
 next
 swapcase = return
end function
''****************************************************************************
'''' @功能說(shuō)明: 將源字符串str中每個(gè)單詞的第一個(gè)字母轉(zhuǎn)換成大寫(xiě)
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @返回值:   - [string] 轉(zhuǎn)換后的字符串
''****************************************************************************
public function capitalize(str)
 words = split(str," ")
 for i = 0 to ubound(words)
  if not i = 0 then
   tmp = " "
  end if
  tmp = tmp & ucase(left(words(i), 1)) & right(words(i), len(words(i))-1)
  words(i) = tmp
 next
 capitalize = arraytostring(words)
end function
''****************************************************************************
'''' @功能說(shuō)明: 將源字符str后中的''過(guò)濾為''''
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @返回值:   - [string] 轉(zhuǎn)換后的字符串
''****************************************************************************
public function checkstr(str)
 if trim(str)="" or isnull(str) then
  checkstr=""
 else
  checkstr=replace(trim(str),"''","''''")
 end if
end function
''****************************************************************************
'''' @功能說(shuō)明: 將字符串中的str中的html代碼進(jìn)行過(guò)濾
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @返回值:   - [string] 轉(zhuǎn)換后的字符串
''****************************************************************************
public function htmlencode(str)
 if trim(str)="" or isnull(str) then
  htmlencode=""
 else
  str=replace(str,">",">")
  str=replace(str,"<","<")
  str=replace(str,chr(32)," ")
  str=replace(str,chr(9)," ")
  str=replace(str,chr(34),""")
  str=replace(str,chr(39),"'")
  str=replace(str,chr(13),"")
  str=replace(str,chr(10) & chr(10), "

")
  str=replace(str,chr(10),"
 ")
  htmlencode=str
 end if
end function
''****************************************************************************
'''' @功能說(shuō)明: 計(jì)算源字符串str的長(zhǎng)度(一個(gè)中文字符為2個(gè)字節(jié)長(zhǎng))
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @返回值:   - [int] 源字符串的長(zhǎng)度
''****************************************************************************
public function strlen(str)
 if trim(str)="" or isnull(str) then
  strlen=0
 else
  dim p_len,x
  p_len=0
  strlen=0
  p_len=len(trim(str))
  for x=1 to p_len
   if asc(mid(str,x,1))<0 then
    strlen=int(strlen) + 2
   else
    strlen=int(strlen) + 1
   end if
  next
 end if
end function
''****************************************************************************
'''' @功能說(shuō)明: 截取源字符串str的前l(fā)ennum個(gè)字符(一個(gè)中文字符為2個(gè)字節(jié)長(zhǎng))
'''' @參數(shù)說(shuō)明:  - str [string]: 源字符串
'''' @參數(shù)說(shuō)明:  - lennum [int]: 截取的長(zhǎng)度
'''' @返回值:   - [string]: 轉(zhuǎn)換后的字符串
''****************************************************************************
public function cutstr(str,lennum)
 dim p_num
 dim i,x
 if strlen(str)<=lennum then
  cutstr=str
 else
  p_num=0
  x=0
  do while not p_num > lennum-2
   x=x+1
   if asc(mid(str,x,1))<0 then
    p_num=int(p_num) + 2
   else
    p_num=int(p_num) + 1
   end if
   cutstr=left(trim(str),x)&"..."
  loop
 end if
end function
end class
%>

相關(guān)文章