summaryrefslogtreecommitdiffstats
path: root/library/core/src/str/mod.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
commit9918693037dce8aa4bb6f08741b6812923486c18 (patch)
tree21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /library/core/src/str/mod.rs
parentReleasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff)
downloadrustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz
rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'library/core/src/str/mod.rs')
-rw-r--r--library/core/src/str/mod.rs79
1 files changed, 79 insertions, 0 deletions
diff --git a/library/core/src/str/mod.rs b/library/core/src/str/mod.rs
index 27178328b..a22c46edc 100644
--- a/library/core/src/str/mod.rs
+++ b/library/core/src/str/mod.rs
@@ -2423,6 +2423,85 @@ impl str {
me.make_ascii_lowercase()
}
+ /// Returns a string slice with leading ASCII whitespace removed.
+ ///
+ /// 'Whitespace' refers to the definition used by
+ /// [`u8::is_ascii_whitespace`].
+ ///
+ /// [`u8::is_ascii_whitespace`]: u8::is_ascii_whitespace
+ ///
+ /// # Examples
+ ///
+ /// ```
+ /// #![feature(byte_slice_trim_ascii)]
+ ///
+ /// assert_eq!(" \t \u{3000}hello world\n".trim_ascii_start(), "\u{3000}hello world\n");
+ /// assert_eq!(" ".trim_ascii_start(), "");
+ /// assert_eq!("".trim_ascii_start(), "");
+ /// ```
+ #[unstable(feature = "byte_slice_trim_ascii", issue = "94035")]
+ #[must_use = "this returns the trimmed string as a new slice, \
+ without modifying the original"]
+ #[inline]
+ pub const fn trim_ascii_start(&self) -> &str {
+ // SAFETY: Removing ASCII characters from a `&str` does not invalidate
+ // UTF-8.
+ unsafe { core::str::from_utf8_unchecked(self.as_bytes().trim_ascii_start()) }
+ }
+
+ /// Returns a string slice with trailing ASCII whitespace removed.
+ ///
+ /// 'Whitespace' refers to the definition used by
+ /// [`u8::is_ascii_whitespace`].
+ ///
+ /// [`u8::is_ascii_whitespace`]: u8::is_ascii_whitespace
+ ///
+ /// # Examples
+ ///
+ /// ```
+ /// #![feature(byte_slice_trim_ascii)]
+ ///
+ /// assert_eq!("\r hello world\u{3000}\n ".trim_ascii_end(), "\r hello world\u{3000}");
+ /// assert_eq!(" ".trim_ascii_end(), "");
+ /// assert_eq!("".trim_ascii_end(), "");
+ /// ```
+ #[unstable(feature = "byte_slice_trim_ascii", issue = "94035")]
+ #[must_use = "this returns the trimmed string as a new slice, \
+ without modifying the original"]
+ #[inline]
+ pub const fn trim_ascii_end(&self) -> &str {
+ // SAFETY: Removing ASCII characters from a `&str` does not invalidate
+ // UTF-8.
+ unsafe { core::str::from_utf8_unchecked(self.as_bytes().trim_ascii_end()) }
+ }
+
+ /// Returns a string slice with leading and trailing ASCII whitespace
+ /// removed.
+ ///
+ /// 'Whitespace' refers to the definition used by
+ /// [`u8::is_ascii_whitespace`].
+ ///
+ /// [`u8::is_ascii_whitespace`]: u8::is_ascii_whitespace
+ ///
+ /// # Examples
+ ///
+ /// ```
+ /// #![feature(byte_slice_trim_ascii)]
+ ///
+ /// assert_eq!("\r hello world\n ".trim_ascii(), "hello world");
+ /// assert_eq!(" ".trim_ascii(), "");
+ /// assert_eq!("".trim_ascii(), "");
+ /// ```
+ #[unstable(feature = "byte_slice_trim_ascii", issue = "94035")]
+ #[must_use = "this returns the trimmed string as a new slice, \
+ without modifying the original"]
+ #[inline]
+ pub const fn trim_ascii(&self) -> &str {
+ // SAFETY: Removing ASCII characters from a `&str` does not invalidate
+ // UTF-8.
+ unsafe { core::str::from_utf8_unchecked(self.as_bytes().trim_ascii()) }
+ }
+
/// Return an iterator that escapes each char in `self` with [`char::escape_debug`].
///
/// Note: only extended grapheme codepoints that begin the string will be