import console; getLeft = function(str,n){ // 欲取的文本, n可为负数 return string.left(str,n) } console.debug(getLeft("aardio",3)) // 返回aar console.debug(getLeft("aardio",-3)) // 返回aard console.pause();