From bed9fefef2f786d6bb579f8b21b6055b693293e9 Mon Sep 17 00:00:00 2001 From: YumiLee Date: Sun, 21 Jun 2020 00:55:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DAS=E8=B7=B3=E8=BD=AC=E5=88=B0?= =?UTF-8?q?whois=E6=97=B6=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/templateHelper.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/templateHelper.go b/frontend/templateHelper.go index f2245a3..04be4a4 100644 --- a/frontend/templateHelper.go +++ b/frontend/templateHelper.go @@ -67,10 +67,10 @@ func smartFormatter(s string) string { for _, line := range strings.Split(s, "\n") { var lineFormatted string if strings.HasPrefix(strings.TrimSpace(line), "BGP.as_path:") || strings.HasPrefix(strings.TrimSpace(line), "Neighbor AS:") || strings.HasPrefix(strings.TrimSpace(line), "Local AS:") { - lineFormatted = regexp.MustCompile(`(\d+)`).ReplaceAllString(line, `${1}`) + lineFormatted = regexp.MustCompile(`(\d+)`).ReplaceAllString(line, `${1}`) } else { lineFormatted = regexp.MustCompile(`([a-zA-Z0-9\-]*\.([a-zA-Z]{2,3}){1,2})(\s|$)`).ReplaceAllString(line, `${1}${3}`) - lineFormatted = regexp.MustCompile(`\[AS(\d+)`).ReplaceAllString(lineFormatted, `[AS${1}`) + lineFormatted = regexp.MustCompile(`\[AS(\d+)`).ReplaceAllString(lineFormatted, `[AS${1}`) lineFormatted = regexp.MustCompile(`(\d+\.\d+\.\d+\.\d+)`).ReplaceAllString(lineFormatted, `${1}`) lineFormatted = regexp.MustCompile(`(?i)(([a-f\d]{0,4}:){3,10}[a-f\d]{0,4})`).ReplaceAllString(lineFormatted, `${1}`) }