轻轻的问一下各位高手(在线等)
onage 2007-10-06 02:25:06 假如我有一个字段kiu
值为:|30|60|60|40|50|60|60|40
(1)我要修改为:|30|55|60|40|50|60|60|40 就是单将第二个值60变为55
(2)我要修改为:|30|60|40|50|60|60|40 就是单将第二个值60删除
有什么好的方法
我用的方法有的土
(1)
kiu=split(rs(kiu)," ¦")
jjk=""
for i=1 to Ubound(kiu)
if i=2 then
jjk=jjk &"|"&"55"
else
jjk=jjk &"|"&jjk
end if
next
response.write "&jjk&"
(2)
kiu=split(rs(kiu)," ¦")
jjk=""
for i=1 to Ubound(kiu)
if i<>2 then
jjk=jjk &"|"&jjk
end if
next
response.write "&jjk&"