add characters

This commit is contained in:
pt 2020-02-13 02:19:15 -05:00
parent 4b6d0c744d
commit 44ef2f5dc5

View File

@ -2292,9 +2292,9 @@ Public Function SQLp_build_sql_values(ByRef tbl() As String, trim As Boolean, he
Set rx = CreateObject("vbscript.regexp")
rx.Global = True
strip_text = "[^a-zA-Z0-9 \-\_\,\#\""]"
strip_text = "[^a-zA-Z0-9 \.\-\_\,\#\""]"
strip_num = "[^0-9\.]"
strip_date = "[^0-9\\\-\:\.]"
strip_date = "[^0-9\/\-\:\.]"
ReDim type_flag(UBound(tbl, 1))
For j = 0 To UBound(tbl, 1)