LibreOfficeDev 25.2 Help
Trả về phần đã ghi rõ của một biểu thức chuỗi (hàm Mid), hoặc thay thế phần của một biểu thức chuỗi bằng một chuỗi khác (câu lệnh Mid).
Mid (Text As String, Start As Long [, Length As Long])
Mid (Text As String, Start As Long, Length As Long, Text As String)
Chuỗi (chỉ theo Hàm)
Text: bất cứ biểu thức chuỗi nào cần sửa đổi.
Start: Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648.
Length: Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 2,147,483,648.
Nếu tham số Length (chiều dài) trong hàm Mid bị bỏ sót, thì trả về tất cả các ký tự trong biểu thức chuỗi, từ vị trí bắt đầu đến kết thúc của chuỗi.
Nếu tham số Length (chiều dài) trong hàm Mid nhỏ hơn chiều dài của chuỗi văn bản cần thay thế, thì cắt ngắn chuỗi đó thành chiều dài đã ghi rõ.
Text: chuỗi sẽ thay thế biểu thức chuỗi (câu lệnh Mid).
Sub ExampleMid_Function_and_Statement
original_text = "This is the original Text"
' Mid as function
msgbox Mid( original_text , 13, 8) ' returns the word original
msgbox original_text ' original_text not modified
' Mid as statement
Mid( original_text, 13, 8, "new" )
msgbox original_text ' returns This is the new Text
End Sub