Quick actions

cmd+k|ctrl+k

Navigation

Languages

strings.TrimSpace

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-08-23T17:06:31Z

Updated

2019-08-23T17:06:31Z

// :glot
package main

import (
	"fmt"
	"strings"
)

func main() {
	// :show start
	s := "  str\n "
	fmt.Printf("TrimSpace: %#v => %#v\n", s, strings.TrimSpace(s))
	// :show end
}
INFO