會傳回 Variant (String),包含從字串左側起算的指定字元數。
語法
Left( string, length )
Left 函數語法具有下列引數:
引數 |
描述 |
string |
必要。 傳回其最左側字元的字串運算式。 如果 string 包含 Null,就會傳回 Null。 |
length |
必要。 Variant (Long) 。 數值運算式 指出要傳回多少字元。 如果為 0,則會傳回零長度字串 (“) 。 如果大於或等於 字串中的字元數,則會傳回整個字串。 |
註解
若要判斷 string 中的字元數,請使用 Len 函數。
附註: 使用 LeftB 函數與字串中包含的位元組資料。 length 不會指定要傳回的字元數,而是指定位元組數。
查詢範例
Expression |
結果 |
SELECT Left (ProductID,3) AS FromLeft FROM ProductSales; |
從 FromLeft 數據行 「ProductSales」 資料表 「ProductSales」 的 [ProductID] 字段值左側傳回 「3」字元。 |
VBA 範例
附註: 下列範例示範如何在 Visual Basic for Applications (VBA) 模組中使用此函數。 如需使用 VBA 的詳細資訊,請在 [搜尋] 旁的下拉式清單中選取 [開發人員參考],並在搜尋方塊中輸入一個或多個字詞。
此範例會使用 Left 函數傳回從字串左側起算的指定字元數。
Dim AnyString, MyStr
AnyString = "Hello World" ' Define string. MyStr = Left(AnyString, 1) ' Returns "H". MyStr = Left(AnyString, 7) ' Returns "Hello W". MyStr = Left(AnyString, 20) ' Returns "Hello World".