mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
14 lines
293 B
Go
14 lines
293 B
Go
|
package stripansi
|
||
|
|
||
|
import (
|
||
|
"regexp"
|
||
|
)
|
||
|
|
||
|
const ansi = "[\u001B\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"
|
||
|
|
||
|
var re = regexp.MustCompile(ansi)
|
||
|
|
||
|
func Strip(str string) string {
|
||
|
return re.ReplaceAllString(str, "")
|
||
|
}
|