color.go 549 B

12345678910111213141516171819202122232425262728293031
  1. package ircclient
  2. import (
  3. "fmt"
  4. "log"
  5. "regexp"
  6. )
  7. func Stripper(input string) string {
  8. // \b, \_, \cNN
  9. var rx *regexp.Regexp
  10. var err error
  11. rx, err = regexp.Compile("\x02|\x16|\x0f|\x03[0-9]{2}")
  12. if err != nil {
  13. log.Panic("regexp:", err)
  14. }
  15. input = rx.ReplaceAllString(input, "")
  16. return input
  17. }
  18. func Bold(input string) string {
  19. return "\x02" + input + "\x02"
  20. }
  21. func Underline(input string) string {
  22. return "\x16" + input + "\x16"
  23. }
  24. func Color(color int, input string) string {
  25. return fmt.Sprintf("\x03%02d%s\x0f", color, input)
  26. }