right函式

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

基本介紹

  • 中文名:right函式
  • 功能:返回 Variant (String)
  • 語法:Right(string, length)
  • 必要參數:string
功能,語法,說明,實例,例子 1,例子 2,例子 3,

功能

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

相關詞條

熱門詞條

聯絡我們