复制代码 代码如下:
<%
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)
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
''****************************************************************************
'''' @功能说明: 将源字符Str后中的''过滤为''''
'''' @参数说明: - str [string]: 源字符串
'''' @返回值: - [string] 转换后的字符串
''****************************************************************************
public function checkstr(Str)
If Trim(Str)="" Or IsNull(str) Then
checkstr=""
else
checkstr=Replace(Trim(Str),"''","''''")
end if
End function
''****************************************************************************
'''' @功能说明: 将字符串中的str中的HTML代码进行过滤
'''' @参数说明: - str [string]: 源字符串
'''' @返回值: - [string] 转换后的字符串
''****************************************************************************
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), "</p><p>")
str=Replace(str,Chr(10),"<br> ")
HtmlEncode=str
end if
End Function
''****************************************************************************
'''' @功能说明: 计算源字符串Str的长度(一个中文字符为2个字节长)
'''' @参数说明: - str [string]: 源字符串
'''' @返回值: - [Int] 源字符串的长度
''****************************************************************************
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
''****************************************************************************
'''' @功能说明: 截取源字符串Str的前LenNum个字符(一个中文字符为2个字节长)
'''' @参数说明: - str [string]: 源字符串
'''' @参数说明: - LenNum [int]: 截取的长度
'''' @返回值: - [string]: 转换后的字符串
''****************************************************************************
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
%>
<%
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)
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
''****************************************************************************
'''' @功能说明: 将源字符Str后中的''过滤为''''
'''' @参数说明: - str [string]: 源字符串
'''' @返回值: - [string] 转换后的字符串
''****************************************************************************
public function checkstr(Str)
If Trim(Str)="" Or IsNull(str) Then
checkstr=""
else
checkstr=Replace(Trim(Str),"''","''''")
end if
End function
''****************************************************************************
'''' @功能说明: 将字符串中的str中的HTML代码进行过滤
'''' @参数说明: - str [string]: 源字符串
'''' @返回值: - [string] 转换后的字符串
''****************************************************************************
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), "</p><p>")
str=Replace(str,Chr(10),"<br> ")
HtmlEncode=str
end if
End Function
''****************************************************************************
'''' @功能说明: 计算源字符串Str的长度(一个中文字符为2个字节长)
'''' @参数说明: - str [string]: 源字符串
'''' @返回值: - [Int] 源字符串的长度
''****************************************************************************
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
''****************************************************************************
'''' @功能说明: 截取源字符串Str的前LenNum个字符(一个中文字符为2个字节长)
'''' @参数说明: - str [string]: 源字符串
'''' @参数说明: - LenNum [int]: 截取的长度
'''' @返回值: - [string]: 转换后的字符串
''****************************************************************************
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
%>
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月23日
2024年11月23日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]