mirror of https://github.com/containers/podman.git
				
				
				
			
		
			
				
	
	
		
			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, "")
 | 
						|
}
 |