Right Function

ត្រឡប់​តួ​អក្សរ "n" ដែល​នៅ​ស្តាំ​បំផុត​នៃ​កន្សោម​ខ្សែ​អក្សរ​មួយ ។

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

Syntax:


Right (string As String, length As Long)

Return value:

ខ្សែ​អក្សរ

Parameters:

string: Any string expression that you want to return the rightmost characters of.

length: Numeric expression that defines the number of characters that you want to return. If length = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648.

ឧទាហរណ៍​ដូច​ខាង​ក្រោម បម្លែង​កាល​បរិច្ឆេទ​ក្នុង​ទ្រង់ទ្រាយ YYYY-MM-DD ទៅ​ជា​ទ្រង់ទ្រាយ​កាល​បរិច្ឆេទ​របស់​សហរដ្ឋ​អាមេរិក (MM/DD/YYYY) ។

Error codes:

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

Example:


Sub ExampleUSDate
Dim sInput As String
Dim sUS_date As String
    sInput = InputBox("Please input a date in the international format 'YYYY-MM-DD'")
    sUS_date = Mid(sInput, 6, 2)
    sUS_date = sUS_date & "/"
    sUS_date = sUS_date & Right(sInput, 2)
    sUS_date = sUS_date & "/"
    sUS_date = sUS_date & Left(sInput, 4)
    MsgBox sUS_date
End Sub