pkg/utils/helpers.go (6 lines of code) (raw):

package utils import "regexp" // RedactSecureString applies regex to a sensitive string and return the redacted value func RedactSecureString(sensitiveString string) string { r, _ := regexp.Compile(`^(\S{4})(\S|\s)*(\S{4})$`) return r.ReplaceAllString(sensitiveString, "$1##### REDACTED #####$3") }