Tagged Questions
2
votes
1answer
89 views
How to split string and assign?
In Python we can use:
ip, port = '127.0.0.1:5432'.split(':')
But in Go-lang it seems impossible:
ip, port := strings.Split("127.0.0.1:5432", ":")
// assignment count mismatch: 2 = 1
How to split ...
1
vote
2answers
138 views
In Go, how can I get the string representation of a struct?
For my application, it does not matter if the string is human readable or not.
2
votes
1answer
135 views
Go: understanding strings
I got slightly confused this morning when the following code worked.
// s points to an empty string in memory
s := new(string)
// assign 1000 byte string to that address
b := make([]byte, 0, 1000)
...
1
vote
1answer
57 views
Open file with path needing character escaping in Go
I have a file which os.open() gives me back, no such file or directory. Is there a function which can escape a file name for getting the correct path to it? Something similar to the net package ...
1
vote
1answer
89 views
Appending a character code to a string
I'm trying to add a null character to a string but I cannot find the right syntax for it.
I've tried:
s += "\0"
and:
s += "\x00"
but both of these give me an error. In general, how to add a ...
2
votes
2answers
99 views
Convert string to time or create a time constant
This is maybe a stupid question to ask but I can't seem to find how to convert date in string format to date time format. Many thanks!
s := "12-25-2012"
var t time.Time
t = s.Time() ???
I would ...
3
votes
2answers
127 views
Proper way to release string for garbage collection after slicing
According to this Go Data Structures article, under the Strings section it states that taking a slice of a string will keep the original string in memory.
"(As an aside, there is a well-known ...
6
votes
4answers
518 views
What is the best way to convert byte array to string?
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 ...
4
votes
2answers
187 views
Read a text file, replace its words, output to another text file
So I am trying to make a program in GO to take a text file full of code and convert that into GO code and then save that file into a GO file or text file. I have been trying to figure out how to save ...
5
votes
1answer
483 views
Comparing strings in Go
I'm trying to find the begin of a named capturing groups in a string to create a simple parser (see related question). To do this the extract function remembers the last for characters in the last4 ...
4
votes
1answer
153 views
How to parse a milliseconds-since-epoch timestamp string in Go?
I've got a string with milliseconds since the epoch (it came originally from a java.lang.System.currentTimeMillis() call). What's the right way to convert this string into a human readable timestamp ...
5
votes
1answer
321 views
No startswith,endswith functions in Go?
Just curious to findout: why aren't there standard functions like startswith, endswith, etc as part of the standard libraries in the Go programming language?
6
votes
2answers
116 views
Indexing string as chars
The elements of strings have type byte and may be accessed using the
usual indexing operations.
How can I get element of string as char ?
"some"[1] -> "o"
4
votes
1answer
117 views
Trim string's suffix or extension?
For example, I have a string, consists of "sample.zip". How do I remove the ".zip" extension using strings package or other else? Thanks in advance.
1
vote
2answers
181 views
Is there an equivalent to Java's String intern function in Go?
Is there an equivalent to Java's String intern function in Go?
I am parsing a lot of text input that has repeating patterns (tags). I would like to be memory efficient about it and store pointers to ...
4
votes
4answers
440 views
What is the fastest way to generate a long random string in Go?
Like [a-zA-Z0-9] string:
na1dopW129T0anN28udaZ
or hexadecimal string:
8c6f78ac23b4a7b8c0182d
By long I mean 2K and more characters.
12
votes
1answer
609 views
golang: what is the zero for string?
func NewKey(c appengine.Context, kind, stringID string, intID int64, parent *Key) *Key
The documentation says :
NewKey creates a new key. kind cannot be empty. Either one or both of
stringID ...
7
votes
2answers
804 views
Go language string length
How can I get the number of characters of a string in Go?
For example, if I have a string "hello" the method should return 5. I saw that len(str) returns the number of bytes and not the number of ...
1
vote
1answer
129 views
Go StartsWith(str string)
Is there a StartsWith(str1, str2 string) function that can check if str1 is a prefix of str2 in Go language?
I want a function similar to the Java startsWith ...
1
vote
2answers
167 views
How can I convert a null-terminated string in a byte buffer to a string in Go?
This:
label := string([]byte{97, 98, 99, 0, 0, 0, 0})
fmt.Printf("%s\n", label)
does this (^@ is the null-byte):
go run test.go
abc^@^@^@
3
votes
1answer
714 views
Convert a bigint to a string in Go
How do one convert a big int to a string (or integer) in Golang?
bigint := big.NewInt(123) //This is what I have
bigstr = "123" //This is what I want
Thank you very very much.
3
votes
2answers
115 views
map with string key and string or slice value?
Newbee warning.
Can I make a map with a string key and "anything" as a value? The goal is to have a map of configuration data. This data can be either a single string (or boolean value or integer, ...
4
votes
2answers
2k views
strings.Split in Golang
The file names.txt consists of many names in the form of:
"KELLEE","JOSLYN","JASON","INGER","INDIRA","GLINDA","GLENNIS"
Does anyone know how to split the string so that it is individual names ...
5
votes
4answers
130 views
Reference to string literals in Go
In my application I will frequently pass references to a static string. I wish to avoid having Go allocate memory for each call, but I failed to get the address to my string literal.
Why is it not ...
11
votes
3answers
562 views
When to use []byte or string in Go?
Frequently in writing Go applications, I find myself with the choice to use []byte or string. Apart from the obvious mutability of []byte, how do I decide which one to use?
I have several use cases ...
1
vote
7answers
226 views
Efficient URL matching and tag extraction
Given the two strings a = "/some/{tag}/here" and b = "/some/text/here" I would like an efficient algorithm to verify if b matches the pattern defined by a and if it does to extract the corresponding ...
3
votes
2answers
556 views
How to convert a int value to string in go?
i := 123
s := string(i)
s is 'E', but what I want is "123"
Please tell me how can I get "123".
And in Java, I can do in this way:
String s = "ab" + "c" // s is "abc"
how can I concat two ...
2
votes
2answers
420 views
How to convert a string to a byte array which is compiled with a given charset in Go?
In java, we can use the method of String : byte[] getBytes(Charset charset) .
This method Encodes a String into a sequence of bytes using the given charset, storing the result into a new byte array.
...
2
votes
2answers
988 views
Removed last character of a string
I want to remove the very last character of a string, but before I do so I want to check if the last character is a "+". How can this be done?
0
votes
2answers
475 views
Replace all spaces in a string with +
I have a string and I want to replace every space in this string with a + I tired this by using:
tw.Text = strings.Replace(tw.Text, " ", "+", 1)
But that didn't worked for me...any solutions?
For ...
0
votes
2answers
280 views
Does Go language use Copy-on-write for strings
Does Go language use Copy-on-write for strings as in Java? I.e. if I pass a string by value to a method and never change it will this allocate memory and copy the string (which will be time ...
1
vote
1answer
1k views
How to replace a single char inside a string - golang
Another GoLang/Geocoding newbie here. I'm getting a physical location address from a user and trying to arrange it to create a nice URL that would use later to get JSON response from Google Geocode ...
0
votes
3answers
2k views
Golang - Problem with strings
I'm having some trouble with strings in Golang. It seems that they don't get handed over to another function.
func Sendtext(ip string, port string, text string) (err int) {
targ := ip + ":" + port
...
2
votes
1answer
661 views
bytes.Split separator as []byte(“…”)
In bytes_test.go I see:
a := Split([]byte(tt.s), []byte(tt.sep), tt.n)
where tt.s and tt.sep are strings. But when I try to do
a := bytes.Split([]byte("test"), []byte("e"), 0)
I get:
...
4
votes
4answers
398 views
How to have a function with a nullable string parameter in Go?
I'm used to Java's String where we can pass null rather than "" for special meanings, such as use a default value.
In Go, string is a primitive type, so I cannot pass nil (null) to a parameter that ...
43
votes
4answers
13k views
How to efficiently concatenate strings in Go?
In Go, string is a primitive type, it's readonly, every manipulation to it will create a new string.
So, if I want to concatenate strings many times without knowing the length of the resulting ...