Docs.rs
ferray-strings-0.5.0
ferray-strings 0.5.0
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
dollspace-gay
maxine-at-forecast
github:forecast-bio:crates-admin
Dependencies
ferray-core ^0.5.0
normal
regex ^1.12
normal
serde ^1.0
normal
proptest ^1.11
dev
serde ^1.0
dev
serde_json ^1.0
dev
toml ^0.8
dev
Versions
89%
of the crate is documented
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module split_join
ferray_
strings
0.5.0
Module split_
join
Module Items
Functions
In crate ferray_
strings
ferray_strings
Module
split_
join
Copy item path
Source
Functions
§
join
Join a collection of string vectors using the given separator.
join_
array
Join each string element of a
StringArray
using the given separator.
rsplit
Right-to-left counterpart of
split
(#515).
split
Split each string element by the given separator.
split_
ragged
Ragged-result variant of
split
: returns a
Vec<Vec<String>>
so callers that need the unpadded splits per element don’t have to strip empty padding from the 2-D result (#277).
splitlines
Split each element on universal newlines (#515). Equivalent to
numpy.strings.splitlines
.