此方法从字符串的左侧返回一定数量的字符。
left(str,count)
str - 源字符串。
count - 从字符串左侧返回的字符数。
/* Main program */ a = "Hello World" say left(a,5)
当我们运行上述程序时,我们将得到以下结果。
Hello