cut
Remove all values of arg from the given string.
def cut(
value: string,
arg: string
) - > string
Remove all values of arg from the given string.
Parameters
| Name | Type | Description |
|---|---|---|
| value | string | The original string content to be processed. |
| arg | string | The specific substring to be identified and removed from the value. |
Returns
| Type | Description |
|---|---|
string | The modified string with all occurrences of the argument removed, preserving HTML safety status where applicable. |