package main
import (
"regexp"
"fmt"
)
func main() {
var re = regexp.MustCompile(`(?m)(?<=CHEM|HIST)\s*|(?<=MATHS)\s*`)
var str = `CLASS 8B CHEM | MON | 10AM to 10:40AM
--Rescheduled-- CLASS 8B MATHS | MON | 11AM to 11:40AM
CLASS 8B HIST | MON | 5PM to 5:40PM'
CLASS 8B CHEM | MON | 10AM to 10:40AM
`
var substitution = "<A-WHITE-SPACE>"
fmt.Println(re.ReplaceAllString(str, substitution))
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Golang, please visit: https://golang.org/pkg/regexp/