16 unstable releases (4 breaking)

new 0.5.0 Nov 19, 2024
0.3.1 Sep 5, 2024
0.3.0 Jul 29, 2024
0.2.2 Oct 5, 2023
0.1.3 May 31, 2022

#33 in No standard library

Download history 177/week @ 2024-07-29 17/week @ 2024-08-05 9/week @ 2024-08-12 15/week @ 2024-08-26 164/week @ 2024-09-02 9/week @ 2024-09-09 33/week @ 2024-09-16 49/week @ 2024-09-23 50/week @ 2024-09-30 14/week @ 2024-10-07 20/week @ 2024-10-14 4/week @ 2024-10-21 7/week @ 2024-10-28 36/week @ 2024-11-04 99/week @ 2024-11-11

148 downloads per month
Used in 5 crates

WTFPL license

60KB
826 lines

Trimothy

docs.rs changelog
crates.io ci deps.rs
license contributions welcome

Trimothy is a small library that expands on the limited String- and slice-trimming capabilities provided by the standard library.

If any of these methods happened to be introduced into stable Rust in the future, they will simply be removed from here.

This crate is #![no_std]-compatible.

TrimSliceMatches

This trait adds the arbitrary, match-based trimming methods to &[u8], Vec<u8>, and Box<[u8]>:

Method Description
trim_matches Trim arbitrary leading and trailing bytes.
trim_start_matches Trim arbitrary leading bytes.
trim_end_matches Trim arbitrary trailing bytes.

Each of these match methods accept either:

  • A single u8;
  • An array or slice of u8;
  • A &BtreeSet<u8>
  • A custom callback with signature Fn(u8) -> bool

TrimMut

This trait brings mutable trimming support to String, Vec<u8>, and Box<[u8]>.

Method Description
trim_mut Trim leading and trailing whitespace (mutably).
trim_start_mut Trim leading whitespace (mutably).
trim_end_mut Trim trailing whitespace (mutably).

TrimMatchesMut

This trait brings mutable match-based trimming String, Vec<u8>, and Box<[u8]>.

Method Description
trim_matches_mut Trim arbitrary leading and trailing bytes (mutably).
trim_start_matches_mut Trim arbitrary leading bytes (mutably).
trim_end_matches_mut Trim arbitrary trailing bytes (mutably).

Each of these match methods accept either:

  • A single T;
  • An array or slice of T;
  • A &BtreeSet<T>
  • A custom callback with signature Fn(T) -> bool

Where T is char for string sources, and u8 for byte sources.

TrimNormal

This trait adds a single trim_and_normalize method to owned and borrowed string and byte slices that trims leading/trailing whitespace, and compacts/normalizes spans of inner whitespace to a single horizontal space.

Method Description
trim_and_normalize Trim, normalize, and return.

The TrimNormalBytes and TrimNormalChars traits can be used to extend this same functionality to arbitrary iterators of u8 and char, respectively.

Installation

The dependency can be added the normal way:

[dependencies]
trimothy = "0.5"

No runtime deps