RemoveDiacritics returns the input value without "diacritics", or accent marks
(value string)
| 82 | |
| 83 | // RemoveDiacritics returns the input value without "diacritics", or accent marks |
| 84 | func RemoveDiacritics(value string) string { |
| 85 | return text.RemoveDiacritics(value) |
| 86 | } |
| 87 | |
| 88 | func PadRight(maxWidth int, s string) string { |
| 89 | return text.PadRight(maxWidth, s) |