命令格式 keyvalue(string srcStr,string split1,string split2, string key) keyvalue(string srcStr, string key) //split1 = “;”,split2 = “:” keyvalue的功能: ● 将srcStr按split1分成key-value对,按split2将key-value对分开,返回key所对应的value ● 只有两个参数时,split1 = ' ;', split2 = ' :' ● Split1或split2 为NULL时,返回NULL. ● srcStr,key为NULL或者没有匹配的key时,返回NULL ● 如果有多个key-value匹配,返回第一个匹配上的key对应的value
示例:args=name=XXX,age=18,source=ect,city=北京;
KEYVALUE(args,',','=','source') as source 得到source=ect