VB中怎么分离字符串中的数字.

在text中输入字符串"e345s454g56s",分离出其中的数字,列在listbox中,怎么写代码?比如输入"ss234t5637u49s34",listbox结果是... 在text中输入字符串"e345s454 g56s",分离出其中的数字,列在listbox中,怎么写代码?
比如输入"ss234t56 37u49 s34",listbox结果是234,56,37,49,34
展开
 我来答
zdingyun
2015-06-14 · 知道合伙人软件行家
zdingyun
知道合伙人软件行家
采纳数:15429 获赞数:48170
1982年上海业余工业大学化工系毕业 现退休

向TA提问 私信TA
展开全部

VB可依据ASCII码来判别字符是数字字符的。

ASCII(American Standard Code for Information Interchange,美国标准信息交换代码)是基于拉丁字母的一套电脑编码系统,主要用于显示现代英语和其他西欧语言。它是现今最通用的单字节编码系统,并等同于国际标准ISO/IEC 646。

其中48~57为0到9十个阿拉伯数字。

以下是一段VB查找一个字符串中的数字部分分别添加到ListBox中的代码,忽略了小数点。

Option Explicit

Private Sub Command1_Click()
    Dim str As String, tmpChar As String, tmpItem As String
    Dim i As Integer, num As Integer
    str = "abd134dfq32f3k230"
    tmpItem = ""
    num = 0
    For i = 1 To Len(str) Step 1
        tmpChar = Mid(str, i, 1)
        If tmpChar >= "0" And tmpChar <= "9" Then
            tmpItem = tmpItem + tmpChar
        ElseIf tmpItem <> "" Then
            AddItemToList (tmpItem)
            tmpItem = ""
        End If
    Next i
    AddItemToList (tmpItem)
End Sub

Private Sub AddItemToList(str As String)
    If str <> "" Then
        List1.AddItem (str)
    End If
End Sub
verywzm
2009-02-26 · TA获得超过947个赞
知道小有建树答主
回答量:499
采纳率:0%
帮助的人:408万
展开全部
Private Sub Command1_Click()
Dim strTest As String
Dim bytArray() As Byte
Dim intcount As Integer
strTest = Text1.Text
bytArray = strTest
For intcount = 0 To UBound(bytArray)
If bytArray(intcount) >= Asc("0") And bytArray(intcount) <= Asc("9") Then
List1.AddItem Chr(bytArray(intcount))
End If
Next
End Sub

================================================

Private Sub Command1_Click()
Dim a() As Byte
Dim s As String
s = ""
a = Text1.Text
For i = 1 To Len(Text1.Text)
a(i) = Asc(Mid(Text1.Text, i, 1))
If a(i) >= Asc("0") And a(i) <= Asc("9") Then
s = s + Chr(a(i))
End If
Next
List1.AddItem s
End Sub

============================
不相隔的数字要分开是吧,底下就可以实现了,用逗号隔开:

Private Sub Command1_Click()
Dim a() As Byte
Dim s As String
s = ""
a = Text1.Text
For i = 1 To Len(Text1.Text)
a(i) = Asc(Mid(Text1.Text, i, 1))
If a(i) >= Asc("0") And a(i) <= Asc("9") Then
If a(i - 1) < Asc("0") Or a(i - 1) > Asc("9") Then
s = s + ","
End If
s = s + Chr(a(i))
End If
Next
If Left(s, 1) = "," Then
s = Right(s, Len(s) - 1)
End If
List1.AddItem s
End Sub
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
shyuanjian
2009-02-23
知道答主
回答量:4
采纳率:0%
帮助的人:0
展开全部
dim a() as integer
dim b as string
for i= 0 to 12
a(i)=mid("e345s45 g56s",i,1)
if 9>=a(i)>=0 then
b=a(i)&b
end if

b就是你要的数字
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式