Logo

Programming-Idioms

  • PHP
  • C#
  • Dart
  • Rust
  • Perl
  • Lua

Idiom #168 Trim suffix

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

local t = s:gsub(w.."$", "")

The $ attached to w matches the end of the string s and is replaced by an empty string.
preg_replace("/{$w}$/u", '', $s);

We can't use rtrim($w, $s), because we want to remove exact suffix value, if it matches. rtrim() would remove all characters from $s located at the end of $s in any order.
using System;
string t = s.TrimEnd(w);
let t = s.strip_suffix(w).unwrap_or(s);

Removes at most 1 occurrence of w
let t = s.trim_end_matches(w);

This may remove several occurrences of w at the end of s.
if (length $s == rindex($s, $w) + length $w) {
    my $t = substr $s, 0, rindex $s, $w;
}
import std.string;
string t = s.chomp(w);

New implementation...
programming-idioms.org