'%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
'快速字串連線類
'%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
'名稱:class_faststring
'**:
'整理:qihangnet
'更新:2023年6月15日
'作用:高效地進行字串連線,比 str = str & "abc"的方法快很多
'授權:免費使用
'%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
class class_faststring
'************************************
'變數定義
'************************************
'index --- 字串陣列的下標
'ub ---www.cppcns.com--- 用於調整陣列度數的整數變數
'ar() ---- 字串陣列
private index, ub, ar()
'************************************
'例項 初始化/終止
'************************************
private sub class_initialize()
redim ar(50)
index = 0
ub = 49
end sub
private sub class_terminate()
erase ar
end sub
'************************************
'事件
'************************************
'預設事件,新增字串
public default sub add(value)
ar(index) =&www.cppcns.comnbsp;value
index = index+1
if index>ub then
ub = ub + 50
redim preserve ar(ub)
end if
end sub
'************************************
'iazelviazelv方法
'*******程式設計客棧*****************************
'返回連線後的字串
public function dump
redim preserve ar(index-1)
dump = join(ar,"") '關鍵所在哦^_^
end function
end class
%>
本文標題: 乙個asp快速字串連線類
本文位址:
asp 字串刪除最後乙個逗號
判斷字串長度是否大於0 if len gnomber 0 then 判斷左面第乙個是不是 如果是的話從第二位開始取數值 if left gnomber,1 then gnomber mid gnomber,2 end if 判斷字串長度是否大於0 if len gnomber 0 then 判斷右面...
如何編寫乙個ASP類
在 class 塊中,成員通過相應的宣告語句被宣告為 private 私有成員,只能在類內部呼叫 或 public 公有成員,可以在類內外部呼叫 被宣告為 private 的將只在 class 塊內是可見的。被宣告為 public 不僅在 class 塊的內部是可見的,對 class 塊之外的 也是...
Join函式 將陣列中的字串連線為乙個字串
join函式 將陣列中的字串連線為乙個字串 作用 返回乙個長字串,此字串由陣列中的字串連線組成的。語法格式 join list delimiter 其中,list必選項。包含要聯接的子字串一維陣列。delimiter可選項。在返回字串中用於分隔子字串的字元。如果省略,將使用空字元 如果 delimi...