Golang : Regular Expression find string example
This is a simple tutorial on how to use Golang's regexp package to find certain string value in a string. Nothing fancy. Just writing this down for future reference.
package main
import (
"fmt"
"regexp"
)
func main() {
// regular expression pattern
regE := regexp.MustCompile("/oid/([\\d]+)/")
// simulate a search
// first convert string to byte for Find() function
searchByte := []byte("/oid/1/")
matchSlice := regE.Find(searchByte)
fmt.Printf("%s \n", matchSlice) // if found, return leftmost match, without 'abc'
matchSlice2 := regE.FindAll(searchByte, 500)
fmt.Printf("%s \n", matchSlice2) // if found, return all successive matches
oid := regE.NumSubexp()
fmt.Printf("OID is %d \n", oid)
// this is how to search by string
matchSlice3 := regE.FindAllString(string(searchByte), -1)
fmt.Printf("%s \n", matchSlice3) // if found, return all successive matches
}
See also : Golang : Regular Expression for alphanumeric and underscore
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
+9.4k Golang : Create and shuffle deck of cards example
+8.5k Golang : Configure Apache and NGINX to access your Go service example
+7.5k Golang : Calculate how many weeks left to go in a given year
+8.2k Setting $GOPATH environment variable for Unix/Linux and Windows
+15.7k Golang : Convert date format and separator yyyy-mm-dd to dd-mm-yyyy
+10.5k Golang : Convert file unix timestamp to UTC time example
+23.1k Golang : Calculate time different
+16k Golang : Intercept Ctrl-C interrupt or kill signal and determine the signal type
+9.1k Golang : Populate or initialize struct with values example
+28k PHP : Convert(cast) string to bigInt
+10.2k Golang : Test a slice of integers for odd and even numbers
+14k Golang : Convert spaces to tabs and back to spaces example