如何在Go中编写多行字符串?

huangapple go评论157阅读模式
英文:

How do you write multiline strings in Go?

问题

Go语言有类似于Python的多行字符串吗?

如果没有,编写跨多行的字符串的首选方法是什么?

英文:

Does Go have anything similar to Python's multiline strings:

<!-- language: lang-python -->

  1. &quot;&quot;&quot;line 1
  2. line 2
  3. line 3&quot;&quot;&quot;

If not, what is the preferred way of writing strings spanning multiple lines?

答案1

得分: 1346

根据语言规范,您可以使用原始字符串字面量,其中字符串由反引号而不是双引号界定。

  1. `line 1
  2. line 2
  3. line 3`
英文:

According to the language specification, you can use a raw string literal, where the string is delimited by backticks instead of double quotes.

  1. `line 1
  2. line 2
  3. line 3`

答案2

得分: 173

你可以这样写:

  1. "line 1" +
  2. "line 2" +
  3. "line 3"

这与以下写法相同:

  1. "line 1line 2line 3"

与使用反引号不同,它会保留转义字符。请注意,"+" 必须在 'leading' 行上 - 例如,以下写法会生成错误:

  1. "line 1"
  2. +"line 2"
英文:

You can write:

  1. &quot;line 1&quot; +
  2. &quot;line 2&quot; +
  3. &quot;line 3&quot;

which is the same as:

  1. &quot;line 1line 2line 3&quot;

Unlike using back ticks, it will preserve escape characters. Note that the "+" must be on the 'leading' line - for instance, the following will generate an error:

  1. &quot;line 1&quot;
  2. +&quot;line 2&quot;

答案3

得分: 63

使用原始字符串字面量来表示多行字符串:

  1. func main(){
  2. multiline := `line
  3. by line
  4. and line
  5. after line`
  6. }

原始字符串字面量

> 原始字符串字面量是反引号之间的字符序列,例如 `foo`。在引号内,除了反引号之外,任何字符都可以出现。

一个重要的部分是它是原始字面量,不仅仅是多行,而且多行并不是它的唯一目的。

> 原始字符串字面量的值是由引号之间的未解释(隐式UTF-8编码)字符组成的字符串;特别地,反斜杠没有特殊含义...

因此,转义字符将不会被解释,而反引号之间的换行符将是真正的换行符

  1. func main(){
  2. multiline := `line
  3. by line \n
  4. and line \n
  5. after line`
  6. // \n将只是被打印出来。
  7. // 但是换行符也在其中。
  8. fmt.Print(multiline)
  9. }

字符串连接

可能你有一行很长的字符串,你想要换行,但是你不需要在其中插入换行符。在这种情况下,你可以使用字符串连接。

  1. func main(){
  2. multiline := &quot;line &quot; +
  3. &quot;by line &quot; +
  4. &quot;and line &quot; +
  5. &quot;after line&quot;
  6. fmt.Print(multiline) // 这里没有换行符
  7. }

由于" "是解释的字符串字面量,转义字符将被解释。

  1. func main(){
  2. multiline := &quot;line &quot; +
  3. &quot;by line \n&quot; +
  4. &quot;and line \n&quot; +
  5. &quot;after line&quot;
  6. fmt.Print(multiline) // 换行符被解释为 \n
  7. }
英文:

Use raw string literals for multi-line strings:

  1. func main(){
  2. multiline := `line
  3. by line
  4. and line
  5. after line`
  6. }

Raw string literals

> Raw string literals are character sequences between back quotes, as in `foo`. Within the quotes, any character may appear except back quote.

A significant part is that is raw literal not just multi-line and to be multi-line is not the only purpose of it.

> 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...

So escapes will not be interpreted and new lines between ticks will be real new lines.

  1. func main(){
  2. multiline := `line
  3. by line \n
  4. and line \n
  5. after line`
  6. // \n will be just printed.
  7. // But new lines are there too.
  8. fmt.Print(multiline)
  9. }

Concatenation

Possibly you have long line which you want to break and you don't need new lines in it. In this case you could use string concatenation.

  1. func main(){
  2. multiline := &quot;line &quot; +
  3. &quot;by line &quot; +
  4. &quot;and line &quot; +
  5. &quot;after line&quot;
  6. fmt.Print(multiline) // No new lines here
  7. }

Since " " is interpreted string literal escapes will be interpreted.

  1. func main(){
  2. multiline := &quot;line &quot; +
  3. &quot;by line \n&quot; +
  4. &quot;and line \n&quot; +
  5. &quot;after line&quot;
  6. fmt.Print(multiline) // New lines as interpreted \n
  7. }

答案4

得分: 47

String literals

  • 原始字符串字面量支持多行(但转义字符不会被解释)
  • 解释字符串字面量会解释转义字符,比如\n

但是,如果你的多行字符串中需要包含一个反引号(`),那么你必须使用一个解释字符串字面量:

  1. `第一行
  2. 第二行 ` +
  3. &quot;`&quot; + `第三行
  4. 第四行`

你不能直接在原始字符串字面量中放置一个反引号(`xx`)。
你必须使用(如“如何在反引号字符串中放置一个反引号?”中所解释的):

  1. + &quot;`&quot; + ...
英文:

From String literals:

  • raw string literal supports multiline (but escaped characters aren't interpreted)
  • interpreted string literal interpret escaped characters, like '\n'.

But, if your multi-line string has to include a backquote (`), then you will have to use an interpreted string literal:

  1. `line one
  2. line two ` +
  3. &quot;`&quot; + `line three
  4. line four`

You cannot directly put a backquote (`) in a raw string literal (`xx`).
You have to use (as explained in "how to put a backquote in a backquoted string?"):

  1. + &quot;`&quot; + ...

答案5

得分: 16

使用反引号可以创建多行字符串:

  1. package main
  2. import "fmt"
  3. func main() {
  4. message := `This is a
  5. Multi-line Text String
  6. Because it uses the raw-string back ticks
  7. instead of quotes.
  8. `
  9. fmt.Printf("%s", message)
  10. }

不使用双引号(")或单引号('),而是使用反引号来定义字符串的开始和结束。然后可以跨多行进行包装。

如果缩进字符串,记住空格也会被计算在内。

请在playground上进行实验。

英文:

Go and multiline strings

Using back ticks you can have multiline strings:

  1. package main
  2. import &quot;fmt&quot;
  3. func main() {
  4. message := `This is a
  5. Multi-line Text String
  6. Because it uses the raw-string back ticks
  7. instead of quotes.
  8. `
  9. fmt.Printf(&quot;%s&quot;, message)
  10. }

Instead of using either the double quote (“) or single quote symbols (‘), instead use back-ticks to define the start and end of the string. You can then wrap it across lines.

> If you indent the string though, remember that the white space will
> count.

Please check the playground and do experiments with it.

答案6

得分: 8

在Go中创建多行字符串实际上非常简单。只需在声明或赋值字符串值时使用反引号(`)字符。

  1. package main
  2. import (
  3. "fmt"
  4. )
  5. func main() {
  6. // 多行字符串
  7. str := `This is a
  8. multiline
  9. string.`
  10. fmt.Println(str + "\n")
  11. // 带有制表符的多行字符串
  12. tabs := `This string
  13. will have
  14. tabs in it`
  15. fmt.Println(tabs)
  16. }
英文:

Creating a multiline string in Go is actually incredibly easy. Simply use the backtick (`) character when declaring or assigning your string value.

  1. package main
  2. import (
  3. &quot;fmt&quot;
  4. )
  5. func main() {
  6. // String in multiple lines
  7. str := `This is a
  8. multiline
  9. string.`
  10. fmt.Println(str + &quot;\n&quot;)
  11. // String in multiple lines with tab
  12. tabs := `This string
  13. will have
  14. tabs in it`
  15. fmt.Println(tabs)
  16. }

答案7

得分: 5

你可以用``将内容包起来,就像

  1. var hi = `我在这里,
  2. 你好,
  3. `
英文:

You can put content with `` around it, like

  1. var hi = `I am here,
  2. hello,
  3. `

答案8

得分: 4

你在go语言中必须非常小心格式和行间距,每一点都很重要,这里有一个可运行的示例,你可以尝试一下 https://play.golang.org/p/c0zeXKYlmF

  1. package main
  2. import "fmt"
  3. func main() {
  4. testLine := `这是测试行1
  5. 这是测试行2`
  6. fmt.Println(testLine)
  7. }
英文:

You have to be very careful on formatting and line spacing in go, everything counts and here is a working sample, try it https://play.golang.org/p/c0zeXKYlmF

  1. package main
  2. import &quot;fmt&quot;
  3. func main() {
  4. testLine := `This is a test line 1
  5. This is a test line 2`
  6. fmt.Println(testLine)
  7. }

答案9

得分: 3

你可以使用原始字符串字面量。
示例

  1. s := `stack
  2. overflow`
英文:

you can use raw literals.
Example

  1. s:=`stack
  2. overflow`

答案10

得分: 3

对于我来说,我需要使用`<sup>重音符号/反引号</sup>并且只是写一个简单的测试

  1. + "&quot;`&quot; + ..."

很丑陋和不方便

所以我拿一个字符<sup>例如:🐬 U+1F42C</sup>来替换它


一个演示

  1. myLongData := `line1
  2. line2 &#128044;aaa&#128044;
  3. line3
  4. ` // 可能你可以使用IDE来帮助你将所有的`替换为&#128044;
  5. myLongData = strings.ReplaceAll(myLongData, "&quot;&#128044;&quot;", "&quot;`&quot;")

如何在Go中编写多行字符串?

性能和内存评估

<code>+ ""&quot;"&lt;/code&gt; v.s. &lt;code&gt;replaceAll(, "&quot;&#128044;&quot;", "&quot;")</code>

  1. package main
  2. import (
  3. "strings"
  4. "testing"
  5. )
  6. func multilineNeedGraveWithReplaceAll() string {
  7. return strings.ReplaceAll(`line1
  8. line2
  9. line3 &#128044;aaa&#128044;`, "&quot;&#128044;&quot;", "&quot;`&quot;")
  10. }
  11. func multilineNeedGraveWithPlus() string {
  12. return `line1
  13. line2
  14. line3` + "&quot;`&quot;" + "&quot;aaa&quot;" + "&quot;`&quot;"
  15. }
  16. func BenchmarkMultilineWithReplaceAll(b *testing.B) {
  17. for i := 0; i < b.N; i++ {
  18. multilineNeedGraveWithReplaceAll()
  19. }
  20. }
  21. func BenchmarkMultilineWithPlus(b *testing.B) {
  22. for i := 0; i < b.N; i++ {
  23. multilineNeedGraveWithPlus()
  24. }
  25. }

cmd
> go test -v -bench=. -run=none -benchmem    查看更多testing.B

output

  1. goos: windows
  2. goarch: amd64
  3. pkg: tutorial/test
  4. cpu: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz
  5. BenchmarkMultilineWithReplaceAll
  6. BenchmarkMultilineWithReplaceAll-8 12572316 89.95 ns/op 24 B/op 1 allocs/op
  7. BenchmarkMultilineWithPlus
  8. BenchmarkMultilineWithPlus-8 1000000000 0.2771 ns/op 0 B/op 0 allocs/op
  9. PASS
  10. ok tutorial/test 7.566s

是的,<code>+ ""`""</code>比其他的性能更好。

英文:

For me, I need to use `<sup> grave accent/backquote</sup> and just write a simple test

  1. + &quot;`&quot; + ...

is ugly and inconvenient

so I take a character<sup>for example: 🐬 U+1F42C</sup> to replace it


a demo

  1. myLongData := `line1
  2. line2 &#128044;aaa&#128044;
  3. line3
  4. ` // maybe you can use IDE to help you replace all ` to &#128044;
  5. myLongData = strings.ReplaceAll(myLongData, &quot;&#128044;&quot;, &quot;`&quot;)

如何在Go中编写多行字符串?

Performance and Memory Evaluation

<code>+ "`"</code> v.s. <code>replaceAll(, "🐬", "`")</code>

  1. package main
  2. import (
  3. &quot;strings&quot;
  4. &quot;testing&quot;
  5. )
  6. func multilineNeedGraveWithReplaceAll() string {
  7. return strings.ReplaceAll(`line1
  8. line2
  9. line3 &#128044;aaa&#128044;`, &quot;&#128044;&quot;, &quot;`&quot;)
  10. }
  11. func multilineNeedGraveWithPlus() string {
  12. return `line1
  13. line2
  14. line3` + &quot;`&quot; + &quot;aaa&quot; + &quot;`&quot;
  15. }
  16. func BenchmarkMultilineWithReplaceAll(b *testing.B) {
  17. for i := 0; i &lt; b.N; i++ {
  18. multilineNeedGraveWithReplaceAll()
  19. }
  20. }
  21. func BenchmarkMultilineWithPlus(b *testing.B) {
  22. for i := 0; i &lt; b.N; i++ {
  23. multilineNeedGraveWithPlus()
  24. }
  25. }

cmd
> go test -v -bench=. -run=none -benchmem    see more testing.B

output

  1. goos: windows
  2. goarch: amd64
  3. pkg: tutorial/test
  4. cpu: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz
  5. BenchmarkMultilineWithReplaceAll
  6. BenchmarkMultilineWithReplaceAll-8 12572316 89.95 ns/op 24 B/op 1 allocs/op
  7. BenchmarkMultilineWithPlus
  8. BenchmarkMultilineWithPlus-8 1000000000 0.2771 ns/op 0 B/op 0 allocs/op
  9. PASS
  10. ok tutorial/test 7.566s

Yes, The <code>+ "`"</code> has a better performance than the other.

答案11

得分: 1

对于我来说,如果添加\n不是问题的话,我会使用以下代码:

  1. fmt.Sprintf("Hello World\nHow are you doing today\nHope all is well with your go\nAnd code")

否则,你可以使用原始字符串

  1. multiline := `Hello Brothers and sisters of the Code
  2. The grail needs us.
  3. `
英文:

For me this is what I use if adding \n is not a problem.

  1. fmt.Sprintf(&quot;Hello World\nHow are you doing today\nHope all is well with your go\nAnd code&quot;)

Else you can use the raw string

  1. multiline := `Hello Brothers and sisters of the Code
  2. The grail needs us.
  3. `

答案12

得分: 0

我使用+与一个空的第一个字符串。这样可以得到一个相对可读的格式,并且对于const也有效。

英文:

I use the + with an empty first string. This allows a somehow readable format and it works for const.

  1. const jql = &quot;&quot; +
  2. &quot;cf[10705] = &#39;%s&#39; and &quot; +
  3. &quot;status = 10302 and &quot; +
  4. &quot;issuetype in (10002, 10400, 10500, 10501) and &quot; +
  5. &quot;project = 10000&quot;

huangapple
  • 本文由 发表于 2011年10月29日 02:44:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/7933460.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定