Methods

withoutΒΆ

without(s:Str, r:RegExp)

Get string with all occurrences of r removed
Source: stdlib.ngs:3849

Returns

Str

Example

"x10ab20c30y".without(/[0-9]+/)  # "xabcy"