Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Pascal

Idiom #168 Trim suffix

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

uses StrUtils;
if AnsiEndsStr(w, s) then
  t := copy(s, 1, length(s) - length(w))
else
  t :=s;
using System;
string t = s.TrimEnd(w);

New implementation...
programming-idioms.org