Logo

Programming-Idioms

  • D

Idiom #168 Trim suffix

Create string t consisting of string s with its suffix w removed (if s ends with w).

const t = s.endsWith(w) ? s.slice(0, -w.length) : s
import std.string;
string t = s.chomp(w);
using System;
string t = s.TrimEnd(w);

New implementation...
programming-idioms.org