1樓:匿名使用者
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
2樓:匿名使用者
str=「l4-122344/2012.3.8」
rq=split(str,"/")(1)
3樓:匿名使用者
right(str, len(str) - instr(str, "/"))
4樓:
thedate = mid(str, instr(str, "/")+1,999)
5樓:匿名使用者
star1 = instr(1,str,"/")+1len1 = len(str)-star1+1riqi = mid(str,star1,len1)riqi 就是你要的字串了
ecel中如何用函式提取字串中的數字
如果是你提供的資料格式,假設在a1 文字 mid a1,find a1 1,len a1 數字 mid a1,2,find a1 2 先將單元格格式改為常規,然後再輸入公式,已經輸入的改了格式再進入編輯狀態後按回車 根據要提取的 數字 在 字串 中的位置,可以選擇使用mid或midb right或r...
sql server 根據要求提取字串aa,bb,cc
提取 aa,bb,cc select left aa,bb,cc,dd,ee 8 或者 select replace aa,bb,cc,dd,ee dd,ee 提取 aa,cc select left aa,bb,cc,dd,ee 2 substring aa,bb,cc,dd,ee 6,3 提取 ...
取字串中資料vb
用split函式 dim srcstr as string 就是你問題中的源字串str dim data1 as long,data2 as long 長整型的資料1和資料2 dim tempstr as string 存放提取出的兩段字串 tempstr split srcstr,vbbinary...