Golang : Extract sub-strings
To extract sub-strings from a string in Golang, it can be done by determining a common delimiter and tokenize each sub-string based on the delimiter or telling Golang to extract the sub-strings based on the character position.
For example :
package main
import (
"fmt"
"strings"
)
func main() {
str := "this is a string"
// extract each word from str
parts := strings.SplitN(str, " ", 4)
fmt.Println(parts[0])
fmt.Println(parts[1])
fmt.Println(parts[2])
fmt.Println(parts[3])
// now we want to extract based on number of characters/positions
subStr1 := str[:4] // this. REMEMBER start from zero....
fmt.Println(subStr1)
subStr2 := str[5:7] // is
fmt.Println(subStr2)
subStr3 := str[8:9] // a
fmt.Println(subStr3)
subStr4 := str[10:] // string
fmt.Println(subStr4)
subStr5 := str[2:12] // string
fmt.Println(subStr5)
}
See also : Find and replace a character in a string in Go
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17k Golang : Get the IPv4 and IPv6 addresses for a specific network interface
+21.9k Golang : Upload big file (larger than 100MB) to AWS S3 with multipart upload
+7.9k Golang Hello World Example
+4.8k Linux/MacOSX : How to symlink a file?
+28.6k Golang : Read, Write(Create) and Delete Cookie example
+33.8k Golang : convert(cast) bytes to string
+6.8k Golang : Calculate pivot points for a cross
+20.5k Golang : Pipe output from one os.Exec(shell command) to another command
+18.2k Golang : Put UTF8 text on OpenCV video capture image frame
+30.1k Golang : How to declare kilobyte, megabyte, gigabyte, terabyte and so on?
+9.4k Golang : Find the length of big.Int variable example
+11.5k Use systeminfo to find out installed Windows Hotfix(s) or updates