package main
import "fmt"
import "regexp"

func main(){
	// your code goes here
	re := regexp.MustCompile("(([a-f0-9]+\\-)+[a-f0-9]+)\\/(.*?)\\/(.*?);version=(\\d*)")
	match := re.FindStringSubmatch("/data/1221a7f47-84c1-445e-a615-ff82d92e2eaa/article/jane;version=1493756861347")
	fmt.Println(match)
}