function split( s, c ) for item in string.gmatch( s, "(.-)"..c) do print(item); end end s = "12.12.12.12;122.1111.111.1;"; s2 = "00:00:00-04:00:00;00:00:00-07:00:00;" split( s, ";" ); split( s2, ":" ); 在线测
) FROM renyuan where name ='张三' 解决如下问题 我现在有一个字段是存:,,3的,而它对应另一张值集表中.eg; 课程人员表 renyuan id name Course 张三 ,, 值集表 keming code name 语文 数字 英语 ……………… course 与code 关联 查询出结果为: 张三 语文,数字,英语 例子: select distinct sc.park_count from screen_manager sc ,parklots p wh
非常非常常用的一个函数Split字符串分割函数. Dim myTest myTest = "aaa/bbb/ccc/ddd/eee/fff/ggg" Dim arrTest arrTest = Split(myTest , , ) Dim i For i = to ubound(arrTest) print "arrTest(" & i & ") = " & arrTest(i) Next 打印结果为: arrTest(0