傳回開始索引和結束索引之間字串運算式的子字串。 如果未定義結束索引,則它介於開始索引和結束索引之間。
字串
substr(<parameters>)
參數 | type |
---|---|
字串 | 字串 |
beginIndex | 整數 |
endIndex | 整數 |
substr(<string>,<beginIndex>)
substr(<string>,<beginIndex>,<endIndex>)
傳回字串。
substr("Hello World",6)
傳回「World」。
substr("Hello World", 0, 5)
傳回「Hello」。