Logo

Programming-Idioms

  • C#
  • Rust
  • Perl
  • D
  • Fortran

Idiom #168 Trim suffix

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

using System;
string t = s.TrimEnd(w);
let t = s.trim_end_matches(w);

This may remove several occurrences of w at the end of s.
let t = s.strip_suffix(w).unwrap_or(s);

Removes at most 1 occurrence of w
if (length $s == rindex($s, $w) + length $w) {
    my $t = substr $s, 0, rindex $s, $w;
}
import std.string;
string t = s.chomp(w);
  i = index(s,w,back=.true.) - 1
  if (i == len(s) - len(w) ) then
     allocate (t, source=s(:i))
  else
     allocate (t, source=s)
  end if

This assumes that t is unallocated before.
import "strings"
t := strings.TrimSuffix(s, w)

New implementation...
programming-idioms.org