diff options
Diffstat (limited to 'string_utils.py')
| -rw-r--r-- | string_utils.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/string_utils.py b/string_utils.py index 37851e0..0899576 100644 --- a/string_utils.py +++ b/string_utils.py @@ -971,6 +971,10 @@ def shuffle(in_str: str) -> str: return from_char_list(chars) +def scramble(in_str: str) -> str: + return shuffle(in_str) + + def strip_html(in_str: str, keep_tag_content: bool = False) -> str: """ Remove html code contained into the given string. |
