Removes ANSI color codes and movement commands.
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
as | string | false | Name of output field, default is to replace contents of input field. | |
field | string | true | @rawstring | Specifies the field where to remove ANSI escape codes. Default is running against @rawstring . [a] |
type | string | false | Type of ANSI codes to remove. | |
Examples
Remove the ANSI escape codes from the message field.
logscale
message := "\x1b[93;41mColor" | stripAnsiCodes(message) | @display := message
Remove all ANSI escape codes from @rawstring
logscale
stripAnsiCodes()