Sub ClearUnreadable(str As String) As String
Dim i As Int
Dim n As Int
Dim arrBytes() As Byte
arrBytes = str.GetBytes("UTF8")
Dim arrBytes2(arrBytes.Length) As Byte
For i = 0 To arrBytes.Length - 1
If arrBytes(i) > 0 Then
arrBytes2(n) = arrBytes(i)
n = n + 1
End If
Next
Return BC.StringFromBytes(arrBytes2, "UTF8").SubString2(0, n)
End Sub