如何删除文本框
发布网友
发布时间:2022-04-23 04:02
我来回答
共4个回答
热心网友
时间:2023-09-19 03:28
在文本框边上选中后按backspace
热心网友
时间:2023-09-19 03:28
选中文本框按delete
热心网友
时间:2023-09-19 03:29
什么文本框?
热心网友
时间:2023-09-19 03:29
一维数组中
然后对每个元素进行遍历
如果出现相同,去掉
最后把整理后的数组元素再全部显示出来
写好了,你看看
Dim strNum
Dim arrNum
Dim strResult
Dim i,j
strNum = "05,21,01,09,10,11,14,15,23,41,08,26,28,34,35,40,44,48,46,26,46,48,08,28,34,35,36,37,40,42,44,01,03,11,23,05,21,03"
arrNum = Split(strNum,",")
strResult = CStr(arrNum(0))
For i=1 To UBound(arrNum)
If InStr(strResult,arrNum(i)) = 0 Then
strResult = strResult&","&arrNum(i)
End if
Next
Response.Write strResult
测试结果:
05,21,01,09,10,11,14,15,23,41,08,26,28,34,35,40,44,48,46,36,37,42,03