1、 ascii(string str)
说明:返回字符串‘abc’第一个字母‘a’的ascii值97,字符串‘ABC’ 第一个字母‘A’的ascii值65。
2、 base64(binary bin)
说明:返回二进制1101的base64字符串为MTEwMQ==,二进制1010的base64字符串为MTAxMA==
3、 concat(string a,string b)
说明:按次序连接两个或多个字符串成一个大的字符串。‘abc’在前,则连接后为‘abchello’;‘hello’在前,则连接后为‘helloabc’;两个以上的字符串,也是按照次序连接。
4、 instr(string str,string substr)
说明:在字符串'helloabc123' 中从前往后搜索子字符串‘abc’,找到,返回其索引位置6;搜索子字符串‘ccc’,没找到则返回0。
5、 length(string a)
说明:返回字符串‘abcefg’的长度6。
6、 lower(string a)或lcase(string a)
说明:lower或lcase函数,都将参数字符串'Hello World'全部转为小写形式‘hello world
7、 repeat(string str,int n)
说明:repeat函数作用是将参数字符串重复n次。repeat('hello',3)将字符串‘hello’重复了3次,repeat('aa',5)将字符串‘aa’重复了5次。