Skip to content

Instantly share code, notes, and snippets.

@flaviocopes
Last active April 16, 2023 03:02
Show Gist options
  • Save flaviocopes/6717857ca7ba7266d41330329eeb5ad0 to your computer and use it in GitHub Desktop.
Save flaviocopes/6717857ca7ba7266d41330329eeb5ad0 to your computer and use it in GitHub Desktop.
Go: check if a string starts with a substring #golang
package main
import (
"strings"
)
func main() {
strings.HasPrefix("foobar", "foo") // true
}
@StevenConradEllis
Copy link

Gracias!

@stephennancekivell
Copy link

Still going strong in 2022!

@NiklasZeroZero
Copy link

Danke

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment