function lleft(content,lef) for le=1 to len(content) if asc(mid(content,le,1))<0 then lef=lef-2 else lef=lef-1 end if if lef<=0 then exit for next lleft=left(content,le) end function
我喜欢将程序整理成下面的格式,这样更容易看清程序的结构。
function lleft(content,lef) for le=1 to len(content) if asc(mid(content,le,1))<0 then lef=lef-2 else lef=lef-1 end if if lef<=0 then exit for next lleft=left(content,le)
end function