Logo

Programming-Idioms

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

Idiom #168 Trim suffix

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

t = s.sub(/#{w}\z/, "")

Like Strings, Regular expressions can be interpolated. \z means "end of string".
t = s.delete_suffix(w)

Introduced in Ruby 2.5.0
using System;
string t = s.TrimEnd(w);

New implementation...
programming-idioms.org