implement R<old>/<new>/ format option (#318)

This commit is contained in:
Mike Fährmann
2019-06-23 22:41:03 +02:00
parent 18a1f8c6cd
commit 95b1e4c3c0
3 changed files with 25 additions and 1 deletions

View File

@@ -341,6 +341,7 @@ class Formatter():
- "c": calls str.capitalize
- "C": calls string.capwords
- "U": calls urllib.parse.unquote
- "S": calls util.to_string()
- Example: {f!l} -> "example"; {f!u} -> "EXAMPLE"
Extra Format Specifiers:
@@ -359,6 +360,10 @@ class Formatter():
- "J<separator>/":
Joins elements of a list (or string) using <separator>
Example: {f:J - /} -> "a - b - c" (if "f" is ["a", "b", "c"])
- "R<old>/<new>/":
Replaces all occurrences of <old> with <new>
Example: {f:R /_/} -> "f_o_o_b_a_r" (if "f" is "f o o b a r")
"""
CONVERSIONS = {
"l": str.lower,
@@ -417,6 +422,8 @@ class Formatter():
func = self._format_maxlen
elif format_spec[0] == "J":
func = self._format_join
elif format_spec[0] == "R":
func = self._format_replace
else:
func = self._format_default
fmt = func(format_spec)
@@ -484,6 +491,15 @@ class Formatter():
separator = separator[1:]
return wrap
@staticmethod
def _format_replace(format_spec):
def wrap(obj):
obj = obj.replace(old, new)
return format(obj, format_spec)
old, new, format_spec = format_spec.split("/", 2)
old = old[1:]
return wrap
@staticmethod
def _format_default(format_spec):
def wrap(obj):