Skip to content

trimmingPrefixOrNil #814

Open
Open
@dabrahams

Description

@dabrahams

Motivation

The current trimmingPrefx drops the information about whether the prefix was matched. I often do something like:

if x.starts(with: "foo") { doSomething(with: x.dropFirst("foo".count)) }

Proposed solution

if let y = x.trimmingPrefixOrNil("foo") { doSomething(with: y) }

Would be more expressive, less error prone, and more efficient. I don't love the name; maybe something better can be found. Frankly I think trimmingPrefix would have been a better name for the functionality I want. After all if "foo" can't be trimmed off the front of x, then x with the prefix "foo" trimmed is not a thing, and nil is an appropriate response.

Alternatives considered

No response

Additional information

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions