部分中文转换为多语言代号

This commit is contained in:
GoEdgeLab
2023-06-30 18:09:43 +08:00
parent 122571eb4b
commit 3333c59ab5
175 changed files with 2510 additions and 709 deletions

View File

@@ -12,7 +12,7 @@ type VariableHolders = []interface{}
var variableMapping = map[string][]interface{}{} // source => [holder1, ...]
var variableLocker = sync.RWMutex{}
var regexpNamedVariable = regexp.MustCompile(`\${[\w.-]+}`)
var regexpNamedVariable = regexp.MustCompile(`\${[@\w.-]+}`)
var stringBuilderPool = sync.Pool{
New: func() interface{} {