This function will strip nulls from strings.
This function will strip nulls from strings.
Rate This function will strip nulls from strings.
(1(1 Vote))
If (InStr(OriginalStr, Chr(0)) > 0) Then
OriginalStr = Left(OriginalStr, _
InStr(OriginalStr, Chr(0)) - 1)
End If '»If (InStr(OriginalStr, Chr(0)) > 0) Then
StripNulls = OriginalStr
End Function
This function will strip nulls from strings. Comments
No comments yet — be the first to post one!
Post a Comment