right函數

從字元串右端取指定個數字元的函數

right函數的功能是從字元串右端取指定個數字元。語法Right ( string, n ) 。參數string:string類型,指定要提取子串的字元串n:long類型,指定子串長度返回值String。函數執行成功時返回string字元串右邊n個字元,發生錯誤時返回空字元串("")。如果任何參數的值為NULL,Right()函數返回NULL。如果n的值大於string字元串的長度,那麼Right()函數返回整個string字元串,但並不增加其它字元。

功能


返回 Variant ( String),其中包含從字元串右邊取出的指定數量的字元。

語法


Right( string, length)
Right 函數的語法具有下面的命名參數:
部分說明
string必要參數。字元串表達式,從中最右邊的字元將被返回。如果 string 包含 Null,將返回 Null。
length必要參數;為 Variant ( Long)。為數值表達式,指出想返回多少字元。如果為 0,返回零長度字元串 ("")。如果大於或等於 string 的字元數,則返回整個字元串。

說明


欲知 string 的字元數,用 Len 函數。
注意RightB 函數作用於包含在字元串中的位元組數據。所以 length 指定的是位元組數,而不是指定返回的字元數。

實例


例子 1

dim txt
txt="This is a beautiful day!"
document.write(Right(txt,11))
輸出:
utiful day!

例子 2

dim txt
txt="This is a beautiful day!"
document.write(Right(txt,100))
輸出:
This is a beautiful day!

例子 3

dim txt
txt="This is a beautiful day!"
x=Len(txt)document.write(Right(txt,x))
輸出:
This is a beautiful day!