Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 584 Bytes

how-to-get-substring-from-string-based-on-startend-position.md

File metadata and controls

32 lines (26 loc) · 584 Bytes

How to get substring from string based on start/end position

package main
import "fmt"
func main() {
  str := "some val!"
  fmt.Println(str[5:7])
}
  • package main - default package declaration
  • func main() { - declare main function that will be launched automatically
  • "some val!" - sample string
  • str[5:7] - extracts substring from position 5 and ends on position 7 (2-character string as a result)

group: substring

Example:

package main
import "fmt"
func main() {
  str := "some val!"
  fmt.Println(str[5:7])
}
va