Lotus Symphony 1.2


Right 函數 [執行時期]

傳回字串表示式最右側的 n 個字元。

另請參閱:Left 函數

語法:

Right(Text As String, n As Integer)

回覆值:

String

參數:

Text:要傳回最右側字元的任意字串表示式。

n:Integer 表示式,定義要傳回的字元數目。如果 n = 0,表示傳回一個零長度字串。

以下範例將 YYYY-MM-DD 的日期格式轉換成 US 日期格式 (MM/DD/YYYY)。

錯誤代碼

5 無效的程序呼叫

範例:

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


其他文件 | 商標