package cluster import "regexp" // sotaRefRe matches a SOTA summit reference inside a spot comment. // // The shape is association/region-NNN — "W9/WI-001", "DM/BM-063", "VK3/VC-014", // "F/AM-123" — and the association may carry digits. Anchored on both sides so // a callsign like DL/SP9DPM/P can never be read as one, and deliberately // narrower than "anything with a slash and a dash": POTA (US-4475) and WWFF // (DLFF-0001) refs share the comment field and must not be caught here. var sotaRefRe = regexp.MustCompile(`\b([A-Z0-9]{1,4}(?:/[A-Z0-9]{1,4})?/[A-Z]{2}-[0-9]{3})\b`) // SOTARefFrom returns the first SOTA reference in a spot comment, or "". func SOTARefFrom(comment string) string { m := sotaRefRe.FindStringSubmatch(comment) if m == nil { return "" } return m[1] }