主页 > 知识库 > asp 数组 重复删除函数(脚本之家增强版)

asp 数组 重复删除函数(脚本之家增强版)

热门标签:长沙防封电销卡品牌 地图标注服务哪家好 西宁公司外呼系统平台 地图标注宅基地 武汉营销电话机器人软件 智能电销机器人适用于哪些行业 外呼系统还用卡么 腾讯地图标注商户关闭 徐州人工智能电销机器人好用吗

因为要写个东西用到,所以百度了一下,居然有朋友乱写,而且比较多,都没有认真测试过,只对字符可以,但是对数字就不可以,而且通用性很差,需要修改才可以真正使用。没办法就自己写了,经过测试完全没有问题,而且思路很方便,代码很短,如下:

复制代码 代码如下:

%
function cxarraynull(cxstr1,cxstr2)
if isarray(cxstr1) then
cxarraynull = "对不起,参数1不能为数组"
Exit Function
end if
if cxstr1 = "" or isempty(cxstr1) then
cxarraynull = "nodate"
Exit Function
end if
ss = split(cxstr1,cxstr2)
cxs = cxstr2ss(0)cxstr2
sss = cxs
for m = 0 to ubound(ss)
cc = cxstr2ss(m)cxstr2
if instr(sss,cc)=0 then
sss = sssss(m)cxstr2
end if
next
cxarraynull = right(sss,len(sss) - len(cxstr2))
cxarraynull = left(cxarraynull,len(cxarraynull) - len(cxstr2))
end Function
%>

使用方法和函数表示:
1、cxarraynull(cxstr1,cxstr2)函数中的两个参数:
cxstr1:要检测的数组变量,可以为空,或其它未知的错误数据,当为空或则为错误数据返回"nodate"。
cxstr2:数组的分割符号,可以为空,或为chr(13)等,自动替换输出。
2、测试代码:
%
s="1,2,3,4,2,3,5,3"
s=cxarraynull(s,",")
response.write s
%>
输出:1,2,3,4,5


脚本之家增强版本,解决了数组中最后一位的,逗号问题。
复制代码 代码如下:

%
function cxarraynull(cxstr1,cxstr2)
if isarray(cxstr1) then
cxarraynull = "对不起,参数1不能为数组"
Exit Function
end if
if cxstr1 = "" or isempty(cxstr1) then
cxarraynull = "nodate"
Exit Function
end if
do while instr(cxstr1,",,")>0
cxstr1=replace(cxstr1,",,",",")
loop
if right(cxstr1,1)="," then
cxstr1=left(cxstr1,len(cxstr1)-1)
end if
ss = split(cxstr1,cxstr2)
cxs = cxstr2ss(0)cxstr2
sss = cxs
for m = 0 to ubound(ss)
cc = cxstr2ss(m)cxstr2
if instr(sss,cc)=0 then
sss = sssss(m)cxstr2
end if
next
cxarraynull = right(sss,len(sss) - len(cxstr2))
cxarraynull = left(cxarraynull,len(cxarraynull) - len(cxstr2))
end function
%>

测试代码:
复制代码 代码如下:

s="1,2,3,4,55,55,55,333,333,2,3,5,3,88,,,,,,,66,,66,,,,,,,,,,,,,,,,,,,,,,,,"
s=cxarraynull(s,",")
response.write s

您可能感兴趣的文章:
  • asp取得数组中的最大值的方法
  • asp下使用数组存放数据的代码
  • asp 得到动态数组中元素的个数
  • asp.net 数组中字符串替换的几种方式
  • asp 动态数组 提供Add、Insert、Remove、RemoveAt、Search等方法。
  • asp.net 字符串、二进制、编码数组转换函数
  • asp.net通过js实现Cookie创建以及清除Cookie数组的代码
  • asp textarea 多行数组分割处理方法
  • ASP 过滤数组重复数据函数(加强版)
  • ASP 使用Filter函数来检索数组的实现代码
  • asp数组的使用介绍
  • Asp与JS的数组和字符串下标介绍
  • asp中使用redim、preserve创建动态数组实例
  • ASP定义数组方法的技巧

标签:通化 通辽 运城 鹰潭 巴彦淖尔 普洱 荆门 雅安

巨人网络通讯声明:本文标题《asp 数组 重复删除函数(脚本之家增强版)》,本文关键词  asp,数组,重复,删除,函数,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《asp 数组 重复删除函数(脚本之家增强版)》相关的同类信息!
  • 本页收集关于asp 数组 重复删除函数(脚本之家增强版)的相关信息资讯供网民参考!
  • 推荐文章