Skip to Content
Go Cookbook
book

Go Cookbook

by Sau Sheong Chang
September 2023
Intermediate to advanced
367 pages
7h 23m
English
O'Reilly Media, Inc.
Content preview from Go Cookbook

Chapter 6. String Recipes

6.0 Introduction

String manipulation is one of the most common tasks in any programming language. Most programs deal with text in one way or another, whether directly interacting with users or communicating between machines. Text is probably the closest thing we have to a universal medium, and string as data is everywhere. Being able to manipulate strings is a critical capability in your arsenal as a programmer.

Go has several packages used for string manipulation. The strconv package focuses on converting to or from strings. The fmt package provides functions to format strings using verbs as replacements, much like in C. The unicode/utf8 and unicode/utf16 packages have functions used in Unicode-encoded strings. The strings package has functions to do many of the string manipulations we see so if you’re not sure what you need, that’s the most likely location to look.

6.1 Creating Strings

Problem

You want to create strings.

Solution

Use either the double quotes ("") or the backtick (or backquote) (``) to create string literals. Use the single quotes ('') to create character literals.

Discussion

In Go, string is a read-only (immutable) slice of bytes. It can be any byte and doesn’t need to be in any encoding or format. This is unlike other programming languages, where strings are sequences of characters. In Go, a character can be represented by more than a single byte. This is in line with the Unicode standard, which defines a code point to represent ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Go Cookbook

Go Cookbook

Aaron Torres
React Cookbook

React Cookbook

David Griffiths, Dawn Griffiths
GitOps Cookbook

GitOps Cookbook

Natale Vinto, Alex Soto Bueno

Publisher Resources

ISBN: 9781098122102Errata Page