View source code
Display the source code in std/string.d from which this page was generated on
github.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Page wiki
View or edit the community-maintained wiki page associated with this page.
Function std.string.chompPrefix
If
starts with str
, then the part of delimiter
following
str
is returned. If delimiter
does not start with
str
, then it is returned unchanged.
delimiter
Prototype
Range chompPrefix(Range, C2)( Range str, const(C2)[] delimiter ) if ((isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) || isSomeString!Range) && isSomeChar!C2);
Parameters
Name | Description |
---|---|
str | string or forward range of characters |
delimiter | string of characters to be sliced off front of str [] |
Returns
slice of str
Example
assert(chompPrefix("hello world", "he") == "llo world"); assert(chompPrefix("hello world", "hello w") == "orld"); assert(chompPrefix("hello world", " world") == "hello world"); assert(chompPrefix("", "hello") == "");
Authors
Walter Bright, Andrei Alexandrescu, and Jonathan M Davis