功能
返回 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!