取字串中資料vb

2023-01-01 13:25:50 字數 597 閱讀 8321

1樓:

用split函式:

dim srcstr as string 』就是你問題中的源字串str

dim data1 as long, data2 as long 『長整型的資料1和資料2

dim tempstr() as string 『存放提取出的兩段字串

tempstr = split(srcstr, "/", , vbbinarycompare) 』提取字串

data1 = val(tempstr(0)) 『轉換為數值

data2 = val(tempstr(1))

2樓:

dim tmp1 as long,tmp2 as longstr=trim(str) '去掉兩端空格tmp1=instr(0,str,"/") '得到分隔符位置tmp2=len(str) 『字串總長if tmp1<>0 then

b=val(mid(str),tmp1+1,tmp2-(tmp1+1)) 『1為分隔符的長度

end if

3樓:匿名使用者

用split()分解

c擷取字串

string str1 四川省宜賓市翠屏區 string result result str1.substring 0,str1.indexof 省 console.write result indexof是獲取指定字元在字串中的位置 索引值 substring startindex int,len...

VBA excel提取字串中的日期

sub 提取日期 dim temp dim str as string dim d as date str l4 122344 2012.3.8 temp split str,1 d dateserial split temp,0 split temp,1 split temp,2 end sub ...

VC 中如何擷取一段字串,VC 擷取字串問題

樓上的回答是可以但是抄比較麻bai 煩在vc中可以用cstring 類 用reversfind方法 可以du查詢到zhi 最後乙個dao 然後用left方法就可以的到 最後乙個 左邊的所有字串了具體可以檢視msdn的說明,很方便的 char str c tomcat abc txt char str...