ASP中一個字串處理類(VBScript) (轉)

amyz發表於2007-08-17
ASP中一個字串處理類(VBScript) (轉)[@more@]

這個類是用於處理字串的,是老外寫的,我把裡面的功能和引數加了說明

使用方法:

=============== test.================

<!--#include file="StringOperations.asp"--&gt

dim str
set str = New StringOperations
 test = str.toCharArray("check this out")
 response.write "str.toCharArray: "
 for i = 0 to ubound(test)
 response.write test(i) & " "
 next
 
 response.write "

"
 test1 = str.arrayToString(test)
 response.write "str.arrayToString: " & test1
 
 response.write "

"
 response.write "str.startsWith: " & str.startsWith(test1, "ch")
 
 response.write "

"
 response.write "str.endWith: " & str.endsWith(test1, "out")
 
 response.write "

"
 response.write "str.clone: " & str.clone("abc", 10)
 
 response.write "

"
 response.write "str.trimStart: " & str.trimStart(test1, 3)
 
 response.write "

"
 response.write "str.trimEnd: " & str.trimEnd(test1, 2)
 
 response.write "

"
 response.write "str.sCase: " & str.swapCase("HiHiHi")
 
 response.write "

"
 response.write "str.isAlphabetic: " & str.isAlphabetic("!")
 
 response.write "

"
 response.write "str.ctalize: " & str.capitalize("clara fehler")
Set str = Nothing
%>

=============== StringOperations.asp================


class StringOperations

 '****************************************************************************
 '' @功能說明: 把字串換為char型陣列
 '' @引數說明: - str [string]: 需要轉換的字串
 '' @返回值: - [Array] Char型陣列
 '****************************************************************************
 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
 
 '****************************************************************************
 '' @功能說明: 把一個陣列轉換成一個字串
 '' @引數說明: - arr [Array]: 需要轉換的資料
 '' @返回值: - [string] 字串
 '****************************************************************************
 public function arrayToString(byVal arr)
 for i = 0 to UBound(arr)
 strObj = strObj & arr(i)
 next
 arrayToString = strObj
 end function
 
 '****************************************************************************
 '' @功能說明: 檢查源字串str是否以chars開頭
 '' @引數說明: - str [string]: 源字串
 '' @引數說明: - 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
 
 '****************************************************************************
 '' @功能說明: 檢查源字串str是否以chars結尾
 '' @引數說明: - str [string]: 源字串
 '' @引數說明: - 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
 
 '****************************************************************************
 '' @功能說明: 複製N個字串str
 '' @引數說明: - str [string]: 源字串
 '' @引數說明: - n [int]: 複製次數
 '' @返回值: - [string] 複製後的字串
 '****************************************************************************
 public function clone(byVal str, n)
 for i = 1 to n
 value = value & str
 next
 clone = value
 end function
 
 '****************************************************************************
 '' @功能說明: 刪除源字串str的前N個字元
 '' @引數說明: - str [string]: 源字串
 '' @引數說明: - n [int]: 刪除的字元個數
 '' @返回值: - [string] 刪除後的字串
 '****************************************************************************
 public function trimStart(byVal str, n)
 value = Mid(str, n+1)
 trimStart = value
 end function
 
 '****************************************************************************
 '' @功能說明: 刪除源字串str的最後N個字串
 '' @引數說明: - str [string]: 源字串
 '' @引數說明: - n [int]: 刪除的字元個數
 '' @返回值: - [string] 刪除後的字串
 '****************************************************************************
 public function trimEnd(byVal str, n)
 value = Left(str, len(str)-n)
 trimEnd = value
 end function
 
 '****************************************************************************
 '' @功能說明: 檢查字元character是否是英文字元 A-Z or a-z
 '' @引數說明: - 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
 
 '****************************************************************************
 '' @功能說明: 對str字串進行大小寫轉換
 '' @引數說明: - str [string]: 源字串
 '' @返回值: - [string] 轉換後的字串
 '****************************************************************************
 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
 
 '****************************************************************************
 '' @功能說明: 將源字串str中每個單詞的第一個字母轉換成大寫
 '' @引數說明: - str [string]: 源字串
 '' @返回值: - [string] 轉換後的字串
 '****************************************************************************
 public function capitalize(str)
 s = 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

end class
%>


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-963211/,如需轉載,請註明出處,否則將追究法律責任。

相關文章