2022-04-15 09:42:07 +02:00
|
|
|
package clean
|
|
|
|
|
|
|
|
import "strings"
|
|
|
|
|
|
|
|
const (
|
|
|
|
ClipShortType = 8
|
2022-09-28 09:01:17 +02:00
|
|
|
ClipType = 64
|
2022-04-15 09:42:07 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Clip shortens a string to the given number of characters, and removes all leading and trailing white space.
|
|
|
|
func Clip(s string, maxLen int) string {
|
|
|
|
s = strings.TrimSpace(s)
|
|
|
|
l := len(s)
|
|
|
|
|
|
|
|
if l <= maxLen {
|
|
|
|
return s
|
|
|
|
} else {
|
|
|
|
return strings.TrimSpace(s[:maxLen])
|
|
|
|
}
|
|
|
|
}
|