You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
291 B
Go
13 lines
291 B
Go
2 years ago
|
package utils
|
||
|
|
||
|
import "strings"
|
||
|
|
||
|
func AddAsterisks(text string, prefixLen int, suffixLen int) string {
|
||
|
strLen := len(text)
|
||
|
padLen := strLen - prefixLen - suffixLen
|
||
|
if padLen <= 0 {
|
||
|
return text
|
||
|
}
|
||
|
return text[0:prefixLen] + strings.Repeat("*", padLen) + text[strLen-suffixLen:strLen]
|
||
|
}
|