You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/pwndbg/lib/strings.py

9 lines
167 B
Python

from __future__ import annotations
import re
def strip_colors(text):
"""Remove all ANSI color codes from the text"""
return re.sub(r"\x1b[^m]*m", "", text)