Trim Function

យក​ចេញ​ពី​កន្សោម​ខ្សែ​អក្សរ​នូវ​រាល់​ដក​ឃ្លា​ដែល​នៅ​មុខ និង​នៅ​ក្រោយ ។

Syntax:


Trim( Text As String )

Return type:

String

Parameters:

Text ៖ កន្សោម​ខ្សែ​អក្សរ​ណា​មួយ ។

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