substr substr

傳回開始索引和結束索引之間的字串運算式的子字串。 如果未定義結束索引,則它介於開始索引和結束索引之間。

類別

字串

函式語法

substr(<parameters>)

參數

參數
type
字串
字串
beginindex
整數
endIndex
整數

簽章與傳回的型別

substr(<string>,<beginIndex>)

substr(<string>,<beginIndex>,<endIndex>)

傳回字串。

範例

substr("Hello World",6)

傳回「World」。

substr("Hello World", 0, 5)

傳回「Hello」。

recommendation-more-help
4f4a00c1-77c9-4eee-84df-bbe6206c3ab9