Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
That's odd? Should work: play.golang.org/p/KLDBydg9lv – André Laszlo Jan 9 at 12:02
1  
@AndréLaszlo: In the playground the ^@ 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
Ah, of course :) Thanks nemo – André Laszlo Jan 13 at 18:35

4 Answers

up vote 7 down vote accepted

methods that read data into byte slices return the number of bytes read. You should save that number and then use it to create your string. n being the number of bytes read, your code would look like this:

s := string(byteArray[:n])

If for some reason you don't have n, you could use the bytes package to find it, assuming your input doesn't have a null character in it.

n := bytes.Index(byteArray, []byte{0})
share|improve this answer

For example,

package main

import "fmt"

func CToGoString(c []byte) string {
    n := -1
    for i, b := range c {
        if b == 0 {
            break
        }
        n = i
    }
    return string(c[:n+1])
}

func main() {
    c := [100]byte{'a', 'b', 'c'}
    fmt.Println("C: ", len(c), c[:4])
    g := CToGoString(c[:])
    fmt.Println("Go:", len(g), g)
}

Output:

C:  100 [97 98 99 0]
Go: 3 abc
share|improve this answer
  • Use slices instead of arrays for reading. E.g. io.Reader accepts a slice, not an array.

  • Use slicing instead of zero padding.

Example:

buf := make([]byte, 100)
n, err := myReader.Read(buf)
if n == 0 && err != nil {
        log.Fatal(err)
}

consume(buf[:n]) // consume will see exact (not padded) slice of read data
share|improve this answer
The data are written by others and by other C language, and I only got to read it, so I cannot control the way it is written. – Spirit Zhang Jan 9 at 7:50
Oh, then slice the byte array using a length value s := a[:n] or s := string(a[:n]) if you need a string. If n is not directly available it must be computed, e.g. by looking for a specific/zero byte in the buffer (array) as Daniel suggests. – jnml Jan 9 at 8:00

Find the location of the first zero-byte using a binary search, then slice.

You can find the zero-byte like this:

package main

import "fmt"

func FirstZero(b []byte) int {
    min, max := 0, len(b)
    for {
        if min + 1 == max { return max }
        mid := (min + max) / 2
        if b[mid] == '\000' {
            max = mid
        } else {
            min = mid
        }
    }
    return len(b)
}
func main() {
    b := []byte{1, 2, 3, 0, 0, 0}
    fmt.Println(FirstZero(b))
}

It may be faster just to naively scan the byte array looking for the zero-byte, especially if most of your strings are short.

share|improve this answer
3  
Your code doesn't compile and, even if it did, it won't work. A binary search algorithm finds the position of a specified value within a sorted array. The array is not necessarily sorted. – peterSO Jan 10 at 0:07
@peterSO You are right, and in fact it is never sorted since it represents a bunch of meaningful names. – Spirit Zhang Jan 10 at 6:22
If all the null bytes are at the end of the string a binary search works. – Anonymous Jan 10 at 17:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.