【已解决】ACCESS 读取英文的疑问?!
本帖最后由 chenronting 于 2011-3-19 20:29 编辑我用
$RS.Open("Select " & $T & " From " & $tblname)
While Not $RS.eof And Not $RS.bof
If @error = 1 Then ExitLoop
MSGBOX(0,0,StringRegExpReplace($RS.Fields(0).value, '\s+', '') )
Wend
上面的语句得到的英文,没有空格?!
比如:I AM 会是:IAM
希望大家帮帮我!谢谢
上面的语句只是一部分,由于我是手机上的,是从我的那个有关数据库的贴子里弄出来的。
答案在2# MSGBOX(0,0,StringRegExpReplace($RS.Fields(0).value, '\s+', '') )
改为:
MSGBOX(0,0,$RS.Fields(0).value) 对数据库不了解,帮顶 回复 2# smartzbs
谢谢,我晚上试试。很感激这位兄台 回复 2# smartzbs
谢谢仁兄,你的方法可以。
页:
[1]