split-char-from-str

Crates.iosplit-char-from-str
lib.rssplit-char-from-str
version0.0.0
sourcesrc
created_at2024-10-18 19:46:50.561609
updated_at2024-10-18 19:46:50.561609
descriptionA small utility to split a string into the first or last character (type `char`) and the rest (type `&str`)
homepage
repositoryhttps://github.com/KSXGitHub/split-char-from-str.git
max_upload_size
id1414688
size8,272
Khải (KSXGitHub)

documentation

https://docs.rs/split-char-from-str

README

Split Char From Str

A small utility to split a string into the first or last character (type char) and the rest (type &str)

Usage

Function call

use split_char_from_str::split_first_char;
let (first_char, rest) = split_first_char("abc").unwrap();
assert_eq!(first_char, 'a');
assert_eq!(rest, "bc");
use split_char_from_str::split_last_char;
let (rest, last_char) = split_last_char("abc").unwrap();
assert_eq!(rest, "ab");
assert_eq!(last_char, 'c');

Method call

use split_char_from_str::SplitCharFromStr;
let (first_char, rest) = "abc".split_first_char().unwrap();
assert_eq!(first_char, 'a');
assert_eq!(rest, "bc");
use split_char_from_str::SplitCharFromStr;
let (rest, last_char) = "abc".split_last_char().unwrap();
assert_eq!(rest, "ab");
assert_eq!(last_char, 'c');

Alternative

If you don't need the first character to be a char, just use str.split_at(1), it will return a tuple of 2 strings.

License

MIT © Hoàng Văn Khải.

Commit count: 1

cargo fmt