LTrim Function

យក​ចេញ​នូវ​ដក​ឃ្លា​ដែល​នៅ​មុខ​គេ នៃ​ដើម​កន្សោម​ខ្សែ​អក្សរ ។

Syntax:

LTrim (Text As String)

Return value:

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

Please support us!