RTrim Function

លុប​ដក​ឃ្លា​នៅ​ចុង​នៃ​កន្សោម​ខ្សែ​អក្សរ ។

មើល​ផង​ដែរ ៖ អនុគមន៍ LTrim

Syntax:

RTrim (Text As String)

Return value:

String

Parameters:

អត្ថបទ ៖ កន្សោម​ខ្សែ​អក្សរ​ណា​មួយ ។

Error codes:

5 ការ​ហៅ​បែបបទ​មិន​ត្រឹមត្រូវ

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!