标题: 自定义函数,提取一段数据的前缀 [打印本页] 作者: roger006 时间: 2009-4-18 20:38 标题: 自定义函数,提取一段数据的前缀 现有这样的数据AD090809,ABC090807,ABCD123,AB231111如何提取前面的非数字的字符,结果应为AD,ABC,ABCD,AB作者: Henry D. Sy 时间: 2009-4-18 20:42
循环判断第一个数字的位子
然后用left函数截取作者: Henry D. Sy 时间: 2009-4-18 20:58 本帖最后由 Henry D. Sy 于 2009-4-18 21:01 编辑
Public Function gStr(ByVal strTblName As String, _
ByVal strFldName As String, _
OldStr As String) As String
Dim rs As New ADODB.Recordset
Dim i As Integer
Dim tempStr As String
Dim strSQL As String
strSQL = "select * from " & strTblName & " where " & strFldName _