Regular expression to extract date(YYYY-MM-DD) from string
Example
package main
import (
"fmt"
"regexp"
)
func main() {
str1 := "If I am 20 years 10 months and 14 days old as of August 17,2016 then my DOB would be 1995-10-03"
re := regexp.MustCompile(`\d{4}-\d{2}-\d{2}`)
fmt.Printf("Pattern: %v\n", re.String()) // print pattern
fmt.Println(re.MatchString(str1)) // true
submatchall := re.FindAllString(str1, -1)
for _, element := range submatchall {
fmt.Println(element)
}
}
Output
Pattern: \d{4}-\d{2}-\d{2}
true
1995-10-03
Most Helpful This Week
Get Year, Month, Day, Hour, Min and Second from a specified date
Data encryption with AES-GCM
Example to handle GET and POST request in Golang
How to delete or remove element from a Map?
How to get struct variable information using reflect package?
How to extract text from between html tag using Regular Expressions in Golang?