RTrim 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!