Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
package main import ( "fmt" "regexp" ) func main() { reg := regexp.MustCompile(`go`) fmt.Println(reg.FindStringIndex("hava go c++ go php")) } /* run: [5 7] */