summaryrefslogtreecommitdiff
path: root/string_utils.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-23 12:43:37 -0800
committerScott Gasch <[email protected]>2022-02-23 12:43:37 -0800
commit89f305d67e913ea1512e2618a0375359ec925ada (patch)
tree0b8121845d7ca8bfbae7770237e3b7fce5ec2a29 /string_utils.py
parent1ae196e65426615856e81dcbac47eb9c473c49e0 (diff)
Let text_utils work with strings that contain ansi escape sequences.
Diffstat (limited to 'string_utils.py')
-rw-r--r--string_utils.py24
1 files changed, 20 insertions, 4 deletions
diff --git a/string_utils.py b/string_utils.py
index a766ada..37851e0 100644
--- a/string_utils.py
+++ b/string_utils.py
@@ -1218,6 +1218,22 @@ def sprintf(*args, **kwargs) -> str:
return ret
+def strip_ansi_sequences(in_str: str) -> str:
+ """Strips ANSI sequences out of strings.
+
+ >>> import ansi as a
+ >>> s = a.fg('blue') + 'blue!' + a.reset()
+ >>> len(s) # '\x1b[38;5;21mblue!\x1b[m'
+ 18
+ >>> len(strip_ansi_sequences(s))
+ 5
+ >>> strip_ansi_sequences(s)
+ 'blue!'
+
+ """
+ return re.sub(r'\x1b\[[\d+;]*[a-z]', '', in_str)
+
+
class SprintfStdout(contextlib.AbstractContextManager):
"""
A context manager that captures outputs to stdout.
@@ -1680,16 +1696,16 @@ def replace_all(in_str: str, replace_set: str, replacement: str) -> str:
return in_str
-def replace_nth(string: str, source: str, target: str, nth: int):
+def replace_nth(in_str: str, source: str, target: str, nth: int):
"""Replaces the nth occurrance of a substring within a string.
>>> replace_nth('this is a test', ' ', '-', 3)
'this is a-test'
"""
- where = [m.start() for m in re.finditer(source, string)][nth - 1]
- before = string[:where]
- after = string[where:]
+ where = [m.start() for m in re.finditer(source, in_str)][nth - 1]
+ before = in_str[:where]
+ after = in_str[where:]
after = after.replace(source, target, 1)
return before + after