mirror of
https://github.com/containers/skopeo.git
synced 2025-09-19 08:51:53 +00:00
See release notes: https://github.com/containers/image/releases/tag/v5.2.0 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
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, "")
|
|
}
|