29 lines
599 B
Go
29 lines
599 B
Go
package util
|
||
|
||
import (
|
||
"encoding/json"
|
||
"strconv"
|
||
"strings"
|
||
)
|
||
|
||
// 占位符替换 xxx{placeholder}xxx
|
||
func ReplacePlaceholder(str string, placeholder string, value string) string {
|
||
return strings.ReplaceAll(str, "{"+placeholder+"}", value)
|
||
}
|
||
|
||
// 构建跳转a标签,新tab打开
|
||
func BuildJumpLink(url string, text string) string {
|
||
return "<a href=\"" + url + "\" target=\"_blank\">" + text + "</a>"
|
||
}
|
||
|
||
func EscapeJSONString(s string) string {
|
||
b, _ := json.Marshal(s)
|
||
return string(b[1 : len(b)-1])
|
||
}
|
||
|
||
// string 转 int
|
||
func StringToInt(s string) int {
|
||
i, _ := strconv.Atoi(s)
|
||
return i
|
||
}
|