ASP中怎么删除一个字符串中的某个字母
a,b,c,d,e,f我要把这个字符串变成a,b,d,e,f这样怎么写呢?C的位置是不固定的,我需要把这串字符串里的C去掉,我的思路是先以逗号切割,然后判断每一个字母是不...
a,b,c,d,e,f 我要把这个字符串变成a,b,d,e,f 这样怎么写呢?C的位置是不固定的,我需要把这串字符串里的C去掉,我的思路是先以逗号切割,然后判断每一个字母是不是为C,可是判断完之后我不知道怎么再组合起来呢?
坐等高手指教,谢谢啊,分不多,麻烦了。
a="a,b,c,d,e,f"
fgsn = split(a,", ")
for a=0 to ubound(fgsn)
if fgsn(a) = "c" then
**********
else
***********
end if
next 展开
坐等高手指教,谢谢啊,分不多,麻烦了。
a="a,b,c,d,e,f"
fgsn = split(a,", ")
for a=0 to ubound(fgsn)
if fgsn(a) = "c" then
**********
else
***********
end if
next 展开
2个回答
展开全部
我来回答吧,按照你的意思拼接起来
a="a,b,c,d,e,f"
newstr = ""
fgsn = split(a,", ")
for a=0 to ubound(fgsn)
'当fgsn(a) = "c"时不再判断,跳过去,不再相加。
if fgsn(a) <> "c" then
if newstr = "" then
newstr = fgsn(a)
else
newstr = newstr & ","& fgsn(a)
end if
end if
next
a = newstr
a="a,b,c,d,e,f"
newstr = ""
fgsn = split(a,", ")
for a=0 to ubound(fgsn)
'当fgsn(a) = "c"时不再判断,跳过去,不再相加。
if fgsn(a) <> "c" then
if newstr = "" then
newstr = fgsn(a)
else
newstr = newstr & ","& fgsn(a)
end if
end if
next
a = newstr
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
a="a,b,c,d,e,f"
b=replace(a,"c,","")
直接找这个替换掉不就可以了
b=replace(a,"c,","")
直接找这个替换掉不就可以了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询