strip

Array-specialization of strip with default predicate.

  1. inout(T)[] strip(inout(T)[] haystack, T needle)
  2. inout(char)[] strip(inout(char)[] haystack)
    pure nothrow @safe @nogc
    inout(char)[]
    strip
    ()
    (
    scope return inout(char)[] haystack
    )
  3. bool startsWith(T[] haystack, T[] needle)
  4. bool startsWith(T[] haystack, T needle)

Examples

assert("beta".strip(' ') == "beta");
assert(" beta ".strip(' ') == "beta");
assert("  beta  ".strip(' ') == "beta");
assert("   beta   ".strip(' ') == "beta");
assert(" _ beta _ ".strip(' ') == "_ beta _");
assert(" _  beta _ ".strip(' ') == "_  beta _");
version (unittest) {
	static char[] f()() @safe pure nothrow { char[1] x = "_"; return x[].strip(' '); }
	static if (hasPreviewDIP1000) static assert(!__traits(compiles, { auto _ = f(); }));
}
const ubyte[3] x = [0, 42, 0];
assert(x.strip(0) == x[1 .. 2]);

See Also

Meta