ASP中一個字串處理類(VBScript) (轉)
這個類是用於處理字串的,是老外寫的,我把裡面的功能和引數加了說明
使用方法:
=============== test.================
<!--#include file="StringOperations.asp"-->
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 字串處理字串
- Java SimpleDateFormat處理日期與字串的轉換JavaORM字串
- Golang語言包-字串處理strings和字串型別轉換strconvGolang字串型別
- 字串處理工具類字串
- 分享一個圖片處理類
- Javascrip 之 字串處理 & 定時器 & 型別轉換Java字串定時器型別
- 一個專業處理字串的IDEA外掛字串Idea
- 取週期性字串中的其中一個字串
- Guava字串處理Joiner、SplitterGuava字串
- PHP 陣列 & 字串處理PHP陣列字串
- bat 批處理字串操作BAT字串
- 簡單的字串處理字串
- shell字串處理總結字串
- json字串轉義格式化後再轉換處理demo StringEscapeUtils.unescapeJavaJSON字串Java
- 一個日期處理類庫moment.jsJS
- JavaScript常用的字串處理方法JavaScript字串
- 06.字元和字串處理字元字串
- 寫個批處理指令碼來幫忙幹活---遍歷資料夾&字串處理指令碼字串
- 數學處理類
- 【Java】基本資料、包裝類間轉換與處理Java
- [Java] 基本資料、包裝類間轉換與處理Java
- 實用處理字串的linux命令字串Linux
- 處理stdin輸入的字串指令字串
- Java入門教程四(字串處理)Java字串
- C語言之字串處理函式C語言字串函式
- 處理字串的方法都在這裡字串
- MySQL 動態字串處理詳解MySql字串
- Linux 使用 shell 指令碼處理字串Linux指令碼字串
- 字串和日期時間的處理字串
- Java基礎-處理json字串解析案例JavaJSON字串
- JavaScript字串和時間處理隨筆JavaScript字串
- C++中的字串編碼處理C++字串編碼
- VBScript Scripting Engine初探
- asp.net 一般處理程式接收SessionASP.NETSession
- 理解ASP.NET Core - 錯誤處理(Handle Errors)ASP.NETError
- java 圖片水印處理類Java
- java 檔案處理 工具類Java
- Python武器庫 - 科研中常用的python字串處理 - 字串擴充Python字串
- 處理一串字串的關鍵字字串