import { type Str } from "https://deno.land/x/rimbu@0.13.5/typical/index.ts";
const { ReplaceLast } = Str;
Replaces, in the given string, the last match with Sub with the given Repl. Returns never if there was no match.
Examples
Example 1
Example 1
ReplaceLast<'abcba', 'b', '_'> => 'abc_a'
ReplaceLast<'abcba', 'b' | 'c', '_'> => 'abc_a'