color.go 668 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 Reset() string {
  25. return "\x0f"
  26. }
  27. func Color(color int) string {
  28. return fmt.Sprintf("\x03%02d", color)
  29. }
  30. func ColorString(color int, input string) string {
  31. return fmt.Sprintf("\x03%02d%s\x0f", color, input)
  32. }