Codekru

Strings in Golang

Strings are one of the most used data structures in almost all languages, and Golang is no exception either. Strings in the Go language are a series of bytes that usually represent text characters. The bytes in the strings can be represented in the Unicode Text using the UTF-8 encoding, because of which we can

Strings in Golang Read More »