VB中如何提取字符串中的部分数字

2024-12-02 15:12:59
推荐回答(1个)
回答1:

更简单通用的:
for i=1 to len(a)
b=mid(a,i,1)
If isnumeric(b) then
s=val(mid(a,i))
exit for
end if
next