Skip to content

Instantly share code, notes, and snippets.

@philo-ng
Last active December 29, 2015 20:35
Show Gist options
  • Select an option

  • Save philo-ng/026da13bc0ec0b094ca9 to your computer and use it in GitHub Desktop.

Select an option

Save philo-ng/026da13bc0ec0b094ca9 to your computer and use it in GitHub Desktop.
Trim null terminated VB6 String
Public Function TrimNullTerminatedString(s As String) As String
TrimNullTerminatedString = Trim(Replace(s, Chr(0), ""))
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment