substring

可用性

Flash Player 4。不鼓励使用此函数,而推荐使用 String.substr()

用法

substring("string", index, count)

参数

string 从中提取新字符串的字符串。

index 要提取的第一个字符的编号。

count 要包含在所提取字符串中的字符数,其中不包括 index 字符。

返回

无。

说明

字符串函数;提取部分字符串。此函数是从 1 开始的,而 String 对象方法是从 0 开始的。

另请参见

String.substr()