Mid是Visual Basic和Microsoft Excel中的一個字串函式,作用是從一個字串中截取出指定數量的字元。
格式:
Mid(string, start, length)
引數:
string:字串表示式,從中返回字元。如果 string 包含 Null,則返回 Null。
Start:string 中被提取的字元部分的開始位置。如果 start 超過了 string 中字元的數目,Mid 將返回零長度字串 ("")。
Length:要返回的字元數。如果省略或 length 超過文字的字元數(包括 start 處的字元),將返回字串中從 start 到字串結束的所有字元。
說明: 要判斷 string 中字元的數目,可使用 Len 函式。
示例:
利用 Mid 函式返回字串中從第四個字元開始的六個字元:
Dim MyVar MyVar = Mid("VB Script is fun!", 4, 6) MyVar的值為"Script"。
注意:MidB 函式與包含在字串中的位元組資料一起使用。其引數不是指定字元數,而是位元組數。
Mid是Visual Basic和Microsoft Excel中的一個字串函式,作用是從一個字串中截取出指定數量的字元。
格式:
Mid(string, start, length)
引數:
string:字串表示式,從中返回字元。如果 string 包含 Null,則返回 Null。
Start:string 中被提取的字元部分的開始位置。如果 start 超過了 string 中字元的數目,Mid 將返回零長度字串 ("")。
Length:要返回的字元數。如果省略或 length 超過文字的字元數(包括 start 處的字元),將返回字串中從 start 到字串結束的所有字元。
說明: 要判斷 string 中字元的數目,可使用 Len 函式。
示例:
利用 Mid 函式返回字串中從第四個字元開始的六個字元:
Dim MyVar MyVar = Mid("VB Script is fun!", 4, 6) MyVar的值為"Script"。
注意:MidB 函式與包含在字串中的位元組資料一起使用。其引數不是指定字元數,而是位元組數。