兩個控制顯示格式的函式(自動換行、自動省略) (轉)

gugu99發表於2007-08-15
兩個控制顯示格式的函式(自動換行、自動省略) (轉)[@more@]

1):rowde()-----每行顯示n個字母,自動換行

Function rowscode(str,n)
If len(str)<=n/2 Then
rowscode=str
Else
Dim TStr
Dim l,t,c
Dim i
l=len(str)
TStr=""
t=0
for i=1 to l
c=asc(mid(str,i,1))
If c<0 then c=c+65536
If c>255 then
t=t+2
Else
t=t+1
End If
TStr=TStr&(mid(str,i,1))
If t>n Then
TStr=TStr&"
"
t=0
End if
next
rowscode= TStr
End If
End Function

2)函式:lefttrue()-----如果字串str的長度大於n,則顯示左邊的n個字元

Function LeftTrue(str,n)
If len(str)<=n/2 Then
LeftTrue=str
Else
Dim TStr
Dim l,t,c
Dim i
l=len(str)
TStr=""
t=0
for i=1 to l
c=asc(mid(str,i,1))
If c<0 then c=c+65536
If c>255 then
t=t+2
Else
t=t+1
End If
If t>n Then exit for
TStr=TStr&(mid(str,i,1))
next
LeftTrue = TStr & "…"
End If
End Function


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

相關文章