I need to read [100]byte to transfer a bunch of string data.
Because not all the string is precisely 100 long, the remaining part of the byte array are padded with 0s.
If I tansfer [100]byte to string by: string(byteArra[:]), the tailing 0s are displayed as ^@^@s.
In C the string will terminate upon 0, so I wonder what's the best way of smartly transfer byte array to string.
^@doesn't show, but it would've been there if you'd test it in the terminal or something similar. The reason for this, is that Go does not stop converting the bytes array to a string when it finds a 0.len(string(bytes))in your example is 5 and not 1. It depends on the output function, whether the string is fully (with zeros) printed or not. – nemo Jan 12 at 5:14