字符串截取left(), right(), substring(), substring_index()
left(str,length)
right(str,length)
substring(str,pos)从第pos个字符位置开始取,直到结束(pos为负时为倒数)
substring(str,pos,len)从第pos个字符位置开始取,只取len个
substring_index(str,delim,count)取第count个delim之前的所有字符
本文出自 “塞上名猪” 博客,请务必保留此出处http://zuohao1990.blog.51cto.com/6057850/1793272
原文地址:http://zuohao1990.blog.51cto.com/6057850/1793272