此方法从特定字符串获取子字符串。
substr(string1,index,count)
string1 - 源字符串。
index - 子字符串的起始索引位置。
count - 子字符串的字符数。
返回子字符串。
/* Main program */ a = "Hello World" say substr(a,2,3)
当我们运行上述程序时,我们将得到以下结果。
ell