Lexical elements: Raw string literals
January 27, 2023
Now that I’ve bored you to death with more about rune
literals than you ever asked, let’s take things up a level, and talk about strings.
String literals
A string literal represents a string constant obtained from concatenating a sequence of characters. There are two forms: raw string literals and interpreted string literals.
Raw string literals are character sequences between back quotes, as in
`foo`
. Within the quotes, any character may appear except back quote. The value of a raw string literal is the string composed of the uninterpreted (implicitly UTF-8-encoded) characters between the quotes; in particular, backslashes have no special meaning and the string may contain newlines. Carriage return characters (’\r’) inside raw string literals are discarded from the raw string value.
Although mentioned first in the spec, the raw string literal is less common than the interpreted string literal. It’s also a bit simpler. Raw strings are most useful in two scenarios:
-
Including newlines
If you want your string to contain newlines, then a raw string literal is your friend. You may want this when building SQL strings for example:
query := `SELECT * FROM users WHERE name = ?`
This will produce the string, exactly as written, including newlines and leading spaces.
-
To avoid extraneous escaping
The second common place to use the raw string literal is when your string would otherwise contain an onerous amount of escaping. For example, a regular expression to match a number with a decimal point might look like this, with an interpreted string literal:
re := regexp.MustCompile("\\d+\\.\\d+")
But with a raw string literal, it’s much more readable:
re := regexp.MustCompile(`\d+\.\d+`)
As a special rule, to facilitate cross-platform compatibility (I’m looking at you, Windows), raw string literals will be stripped of any carraige return characters (i.e \r
) in the text. Without this rule, two source file that appear identical (and indeed, may be identical in git) may produce different strings when executed on Windows versus Unix machines.
If you want the literal carriage returns to remain in your string, you have a few options:
-
Use an interpreted string, with literal carriage return escape sequences.
-
Encode the entire string using some other format, such as Base64.
-
Read the string from a file on disk (or embed it from disk)
-
Do some ugly mix-and-match between raw and interpreted string literals:
mixedString := `This is a raw string literal` + "\r" +` that includes literal carraige` + "\r" + ` returns at the end of each line.`+"\r" + ` `
Probably don’t do that one.
Quotes from The Go Programming Language Specification, Version of June 29, 2022
Related Content

Empty structs
We finally we have enough knowledge for the EBNF format not to seem completely foreign, so let’s jump back and take a look at that, with the examples provided in the spec… Struct types … StructType = "struct" "{" { FieldDecl ";" } "}" . FieldDecl = (IdentifierList Type | EmbeddedField) [ Tag ] . EmbeddedField = [ "*" ] TypeName [ TypeArgs ] . Tag = string_lit . // An empty struct.

Struct tags
Struct types … A field declaration may be followed by an optional string literal tag, which becomes an attribute for all the fields in the corresponding field declaration. An empty tag string is equivalent to an absent tag. The tags are made visible through a reflection interface and take part in type identity for structs but are otherwise ignored. struct { x, y float64 "" // an empty tag string is like an absent tag name string "any string is permitted as a tag" _ [4]byte "ceci n'est pas un champ de structure" } // A struct corresponding to a TimeStamp protocol buffer.

Struct method promotion
Yesterday we saw an example of struct field promotion. But methods (which we haven’t really discussed yet) can also be promoted. Struct types … Given a struct type S and a named type T, promoted methods are included in the method set of the struct as follows: If S contains an embedded field T, the method sets of S and *S both include promoted methods with receiver T. The method set of *S also includes promoted methods with receiver *T.