Trim Function

ཡིག་རྒྱུན་གསལ་བརྗོད་ཅིག་ནང་ལས་སྔོན་བསྐྱོད་ཆ་མཉམ་དང་རྒྱབ་ལུས་བར་སྟོང་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།

Syntax:


རྩེ་སྙོམ་(ཚིག་ཡིག་ ཡིག་རྒྱུན་བཟུམ་སྦེ)

Return value:

String

Parameters:

ཚིག་ཡིག: ཡིག་རྒྱུན་གང་རུང་གསལ་བརྗོད།

Error codes:

༥ ནུས་མེད་བྱ་སྒོའི་ལམ་ལུགས་བོད་བརྡ་

Example:


Sub ExampleSpaces
Dim sText2 As String,sText As String,sOut As String
    sText2 = " <*Las Vegas*> "
    sOut = "'"+sText2 +"'"+ Chr(13)
    sText = Ltrim(sText2) ' sText = "<*Las Vegas*> "
    sOut = sOut + "'"+sText +"'" + Chr(13)
    sText = Rtrim(sText2) ' sText = " <*Las Vegas*>"
    sOut = sOut +"'"+ sText +"'" + Chr(13)
    sText = Trim(sText2) ' sText = "<*Las Vegas*>"
    sOut = sOut +"'"+ sText +"'"
    MsgBox sOut
End Sub

Please support us!