Logo

Programming-Idioms

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

Idiom #168 Trim suffix

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

import Data.List (isSuffixOf)
t :: String
t = if w `isSuffixOf` s then take (length s - length w) else s
using System;
string t = s.TrimEnd(w);

New implementation...
programming-idioms.org