github.com/HXSecurity/DongTai-agent-go@v0.4.2/core/base/stringsReplace/replacement.go (about) 1 package stringsReplace 2 3 func Replace(s, old, new string, n int) string { 4 re := ReplaceR(s, old, new, n) 5 return re 6 } 7 8 func ReplaceR(s, old, new string, n int) string { 9 return "" 10 }