КАТЕГОРИЯ: ТекстИСТЕЦ: Текст.ОТВЕТЧИК: Текст
re := regexp.MustCompile(`(КАТЕГОРИЯ:\s+)(.*)(ИСТЕЦ)`)
re := regexp.MustCompile(`(ИСТЕЦ:\s+)(.*)(ОТВЕТЧИК)`)
re := regexp.MustCompile(`(ОТВЕТЧИК:\s+)(.*)`)
re := regexp.MustCompile(`(?P<Year>\d{4})-(?P<Month>\d{2})-(?P<Day>\d{2})`)
re := r.FindStringSubmatch(`2015-05-27`)
re := regexp.MustCompile(``)
КАТЕГОРИЯ:\s+(?P<Category>.*)ИСТЕЦ:\s+(?P<Plaintiff>.*)ОТВЕТЧИК:\s+(?P<Defendant>.*)