]> git.lizzy.rs Git - rust.git/blob - library/core/src/str/mod.rs
Rollup merge of #79236 - lcnr:mcg-resolve-dsb, r=eddyb
[rust.git] / library / core / src / str / mod.rs
1 //! String manipulation.
2 //!
3 //! For more details, see the [`std::str`] module.
4 //!
5 //! [`std::str`]: ../../std/str/index.html
6
7 #![stable(feature = "rust1", since = "1.0.0")]
8
9 mod converts;
10 mod error;
11 mod iter;
12 mod traits;
13 mod validations;
14
15 use self::pattern::Pattern;
16 use self::pattern::{DoubleEndedSearcher, ReverseSearcher, Searcher};
17
18 use crate::char;
19 use crate::mem;
20 use crate::slice::{self, SliceIndex};
21
22 pub mod pattern;
23
24 #[unstable(feature = "str_internals", issue = "none")]
25 #[allow(missing_docs)]
26 pub mod lossy;
27
28 #[stable(feature = "rust1", since = "1.0.0")]
29 pub use converts::{from_utf8, from_utf8_unchecked};
30
31 #[stable(feature = "str_mut_extras", since = "1.20.0")]
32 pub use converts::{from_utf8_mut, from_utf8_unchecked_mut};
33
34 #[stable(feature = "rust1", since = "1.0.0")]
35 pub use error::{ParseBoolError, Utf8Error};
36
37 #[stable(feature = "rust1", since = "1.0.0")]
38 pub use traits::FromStr;
39
40 #[stable(feature = "rust1", since = "1.0.0")]
41 pub use iter::{Bytes, CharIndices, Chars, Lines, SplitWhitespace};
42
43 #[stable(feature = "rust1", since = "1.0.0")]
44 #[allow(deprecated)]
45 pub use iter::LinesAny;
46
47 #[stable(feature = "rust1", since = "1.0.0")]
48 pub use iter::{RSplit, RSplitTerminator, Split, SplitTerminator};
49
50 #[stable(feature = "rust1", since = "1.0.0")]
51 pub use iter::{RSplitN, SplitN};
52
53 #[stable(feature = "str_matches", since = "1.2.0")]
54 pub use iter::{Matches, RMatches};
55
56 #[stable(feature = "str_match_indices", since = "1.5.0")]
57 pub use iter::{MatchIndices, RMatchIndices};
58
59 #[stable(feature = "encode_utf16", since = "1.8.0")]
60 pub use iter::EncodeUtf16;
61
62 #[stable(feature = "str_escape", since = "1.34.0")]
63 pub use iter::{EscapeDebug, EscapeDefault, EscapeUnicode};
64
65 #[stable(feature = "split_ascii_whitespace", since = "1.34.0")]
66 pub use iter::SplitAsciiWhitespace;
67
68 #[unstable(feature = "split_inclusive", issue = "72360")]
69 use iter::SplitInclusive;
70
71 #[unstable(feature = "str_internals", issue = "none")]
72 pub use validations::next_code_point;
73
74 use iter::MatchIndicesInternal;
75 use iter::SplitInternal;
76 use iter::{MatchesInternal, SplitNInternal};
77
78 use validations::truncate_to_char_boundary;
79
80 #[inline(never)]
81 #[cold]
82 #[track_caller]
83 fn slice_error_fail(s: &str, begin: usize, end: usize) -> ! {
84     const MAX_DISPLAY_LENGTH: usize = 256;
85     let (truncated, s_trunc) = truncate_to_char_boundary(s, MAX_DISPLAY_LENGTH);
86     let ellipsis = if truncated { "[...]" } else { "" };
87
88     // 1. out of bounds
89     if begin > s.len() || end > s.len() {
90         let oob_index = if begin > s.len() { begin } else { end };
91         panic!("byte index {} is out of bounds of `{}`{}", oob_index, s_trunc, ellipsis);
92     }
93
94     // 2. begin <= end
95     assert!(
96         begin <= end,
97         "begin <= end ({} <= {}) when slicing `{}`{}",
98         begin,
99         end,
100         s_trunc,
101         ellipsis
102     );
103
104     // 3. character boundary
105     let index = if !s.is_char_boundary(begin) { begin } else { end };
106     // find the character
107     let mut char_start = index;
108     while !s.is_char_boundary(char_start) {
109         char_start -= 1;
110     }
111     // `char_start` must be less than len and a char boundary
112     let ch = s[char_start..].chars().next().unwrap();
113     let char_range = char_start..char_start + ch.len_utf8();
114     panic!(
115         "byte index {} is not a char boundary; it is inside {:?} (bytes {:?}) of `{}`{}",
116         index, ch, char_range, s_trunc, ellipsis
117     );
118 }
119
120 #[lang = "str"]
121 #[cfg(not(test))]
122 impl str {
123     /// Returns the length of `self`.
124     ///
125     /// This length is in bytes, not [`char`]s or graphemes. In other words,
126     /// it may not be what a human considers the length of the string.
127     ///
128     /// [`char`]: prim@char
129     ///
130     /// # Examples
131     ///
132     /// Basic usage:
133     ///
134     /// ```
135     /// let len = "foo".len();
136     /// assert_eq!(3, len);
137     ///
138     /// assert_eq!("ƒoo".len(), 4); // fancy f!
139     /// assert_eq!("ƒoo".chars().count(), 3);
140     /// ```
141     #[stable(feature = "rust1", since = "1.0.0")]
142     #[rustc_const_stable(feature = "const_str_len", since = "1.32.0")]
143     #[inline]
144     pub const fn len(&self) -> usize {
145         self.as_bytes().len()
146     }
147
148     /// Returns `true` if `self` has a length of zero bytes.
149     ///
150     /// # Examples
151     ///
152     /// Basic usage:
153     ///
154     /// ```
155     /// let s = "";
156     /// assert!(s.is_empty());
157     ///
158     /// let s = "not empty";
159     /// assert!(!s.is_empty());
160     /// ```
161     #[inline]
162     #[stable(feature = "rust1", since = "1.0.0")]
163     #[rustc_const_stable(feature = "const_str_is_empty", since = "1.32.0")]
164     pub const fn is_empty(&self) -> bool {
165         self.len() == 0
166     }
167
168     /// Checks that `index`-th byte is the first byte in a UTF-8 code point
169     /// sequence or the end of the string.
170     ///
171     /// The start and end of the string (when `index == self.len()`) are
172     /// considered to be boundaries.
173     ///
174     /// Returns `false` if `index` is greater than `self.len()`.
175     ///
176     /// # Examples
177     ///
178     /// ```
179     /// let s = "Löwe 老虎 Léopard";
180     /// assert!(s.is_char_boundary(0));
181     /// // start of `老`
182     /// assert!(s.is_char_boundary(6));
183     /// assert!(s.is_char_boundary(s.len()));
184     ///
185     /// // second byte of `ö`
186     /// assert!(!s.is_char_boundary(2));
187     ///
188     /// // third byte of `老`
189     /// assert!(!s.is_char_boundary(8));
190     /// ```
191     #[stable(feature = "is_char_boundary", since = "1.9.0")]
192     #[inline]
193     pub fn is_char_boundary(&self, index: usize) -> bool {
194         // 0 and len are always ok.
195         // Test for 0 explicitly so that it can optimize out the check
196         // easily and skip reading string data for that case.
197         if index == 0 || index == self.len() {
198             return true;
199         }
200         match self.as_bytes().get(index) {
201             None => false,
202             // This is bit magic equivalent to: b < 128 || b >= 192
203             Some(&b) => (b as i8) >= -0x40,
204         }
205     }
206
207     /// Converts a string slice to a byte slice. To convert the byte slice back
208     /// into a string slice, use the [`from_utf8`] function.
209     ///
210     /// # Examples
211     ///
212     /// Basic usage:
213     ///
214     /// ```
215     /// let bytes = "bors".as_bytes();
216     /// assert_eq!(b"bors", bytes);
217     /// ```
218     #[stable(feature = "rust1", since = "1.0.0")]
219     #[rustc_const_stable(feature = "str_as_bytes", since = "1.32.0")]
220     #[inline(always)]
221     #[allow(unused_attributes)]
222     #[rustc_allow_const_fn_unstable(const_fn_transmute)]
223     pub const fn as_bytes(&self) -> &[u8] {
224         // SAFETY: const sound because we transmute two types with the same layout
225         unsafe { mem::transmute(self) }
226     }
227
228     /// Converts a mutable string slice to a mutable byte slice.
229     ///
230     /// # Safety
231     ///
232     /// The caller must ensure that the content of the slice is valid UTF-8
233     /// before the borrow ends and the underlying `str` is used.
234     ///
235     /// Use of a `str` whose contents are not valid UTF-8 is undefined behavior.
236     ///
237     /// # Examples
238     ///
239     /// Basic usage:
240     ///
241     /// ```
242     /// let mut s = String::from("Hello");
243     /// let bytes = unsafe { s.as_bytes_mut() };
244     ///
245     /// assert_eq!(b"Hello", bytes);
246     /// ```
247     ///
248     /// Mutability:
249     ///
250     /// ```
251     /// let mut s = String::from("🗻∈🌏");
252     ///
253     /// unsafe {
254     ///     let bytes = s.as_bytes_mut();
255     ///
256     ///     bytes[0] = 0xF0;
257     ///     bytes[1] = 0x9F;
258     ///     bytes[2] = 0x8D;
259     ///     bytes[3] = 0x94;
260     /// }
261     ///
262     /// assert_eq!("🍔∈🌏", s);
263     /// ```
264     #[stable(feature = "str_mut_extras", since = "1.20.0")]
265     #[inline(always)]
266     pub unsafe fn as_bytes_mut(&mut self) -> &mut [u8] {
267         // SAFETY: the cast from `&str` to `&[u8]` is safe since `str`
268         // has the same layout as `&[u8]` (only libstd can make this guarantee).
269         // The pointer dereference is safe since it comes from a mutable reference which
270         // is guaranteed to be valid for writes.
271         unsafe { &mut *(self as *mut str as *mut [u8]) }
272     }
273
274     /// Converts a string slice to a raw pointer.
275     ///
276     /// As string slices are a slice of bytes, the raw pointer points to a
277     /// [`u8`]. This pointer will be pointing to the first byte of the string
278     /// slice.
279     ///
280     /// The caller must ensure that the returned pointer is never written to.
281     /// If you need to mutate the contents of the string slice, use [`as_mut_ptr`].
282     ///
283     /// [`as_mut_ptr`]: str::as_mut_ptr
284     ///
285     /// # Examples
286     ///
287     /// Basic usage:
288     ///
289     /// ```
290     /// let s = "Hello";
291     /// let ptr = s.as_ptr();
292     /// ```
293     #[stable(feature = "rust1", since = "1.0.0")]
294     #[rustc_const_stable(feature = "rustc_str_as_ptr", since = "1.32.0")]
295     #[inline]
296     pub const fn as_ptr(&self) -> *const u8 {
297         self as *const str as *const u8
298     }
299
300     /// Converts a mutable string slice to a raw pointer.
301     ///
302     /// As string slices are a slice of bytes, the raw pointer points to a
303     /// [`u8`]. This pointer will be pointing to the first byte of the string
304     /// slice.
305     ///
306     /// It is your responsibility to make sure that the string slice only gets
307     /// modified in a way that it remains valid UTF-8.
308     #[stable(feature = "str_as_mut_ptr", since = "1.36.0")]
309     #[inline]
310     pub fn as_mut_ptr(&mut self) -> *mut u8 {
311         self as *mut str as *mut u8
312     }
313
314     /// Returns a subslice of `str`.
315     ///
316     /// This is the non-panicking alternative to indexing the `str`. Returns
317     /// [`None`] whenever equivalent indexing operation would panic.
318     ///
319     /// # Examples
320     ///
321     /// ```
322     /// let v = String::from("🗻∈🌏");
323     ///
324     /// assert_eq!(Some("🗻"), v.get(0..4));
325     ///
326     /// // indices not on UTF-8 sequence boundaries
327     /// assert!(v.get(1..).is_none());
328     /// assert!(v.get(..8).is_none());
329     ///
330     /// // out of bounds
331     /// assert!(v.get(..42).is_none());
332     /// ```
333     #[stable(feature = "str_checked_slicing", since = "1.20.0")]
334     #[inline]
335     pub fn get<I: SliceIndex<str>>(&self, i: I) -> Option<&I::Output> {
336         i.get(self)
337     }
338
339     /// Returns a mutable subslice of `str`.
340     ///
341     /// This is the non-panicking alternative to indexing the `str`. Returns
342     /// [`None`] whenever equivalent indexing operation would panic.
343     ///
344     /// # Examples
345     ///
346     /// ```
347     /// let mut v = String::from("hello");
348     /// // correct length
349     /// assert!(v.get_mut(0..5).is_some());
350     /// // out of bounds
351     /// assert!(v.get_mut(..42).is_none());
352     /// assert_eq!(Some("he"), v.get_mut(0..2).map(|v| &*v));
353     ///
354     /// assert_eq!("hello", v);
355     /// {
356     ///     let s = v.get_mut(0..2);
357     ///     let s = s.map(|s| {
358     ///         s.make_ascii_uppercase();
359     ///         &*s
360     ///     });
361     ///     assert_eq!(Some("HE"), s);
362     /// }
363     /// assert_eq!("HEllo", v);
364     /// ```
365     #[stable(feature = "str_checked_slicing", since = "1.20.0")]
366     #[inline]
367     pub fn get_mut<I: SliceIndex<str>>(&mut self, i: I) -> Option<&mut I::Output> {
368         i.get_mut(self)
369     }
370
371     /// Returns an unchecked subslice of `str`.
372     ///
373     /// This is the unchecked alternative to indexing the `str`.
374     ///
375     /// # Safety
376     ///
377     /// Callers of this function are responsible that these preconditions are
378     /// satisfied:
379     ///
380     /// * The starting index must not exceed the ending index;
381     /// * Indexes must be within bounds of the original slice;
382     /// * Indexes must lie on UTF-8 sequence boundaries.
383     ///
384     /// Failing that, the returned string slice may reference invalid memory or
385     /// violate the invariants communicated by the `str` type.
386     ///
387     /// # Examples
388     ///
389     /// ```
390     /// let v = "🗻∈🌏";
391     /// unsafe {
392     ///     assert_eq!("🗻", v.get_unchecked(0..4));
393     ///     assert_eq!("∈", v.get_unchecked(4..7));
394     ///     assert_eq!("🌏", v.get_unchecked(7..11));
395     /// }
396     /// ```
397     #[stable(feature = "str_checked_slicing", since = "1.20.0")]
398     #[inline]
399     pub unsafe fn get_unchecked<I: SliceIndex<str>>(&self, i: I) -> &I::Output {
400         // SAFETY: the caller must uphold the safety contract for `get_unchecked`;
401         // the slice is dereferencable because `self` is a safe reference.
402         // The returned pointer is safe because impls of `SliceIndex` have to guarantee that it is.
403         unsafe { &*i.get_unchecked(self) }
404     }
405
406     /// Returns a mutable, unchecked subslice of `str`.
407     ///
408     /// This is the unchecked alternative to indexing the `str`.
409     ///
410     /// # Safety
411     ///
412     /// Callers of this function are responsible that these preconditions are
413     /// satisfied:
414     ///
415     /// * The starting index must not exceed the ending index;
416     /// * Indexes must be within bounds of the original slice;
417     /// * Indexes must lie on UTF-8 sequence boundaries.
418     ///
419     /// Failing that, the returned string slice may reference invalid memory or
420     /// violate the invariants communicated by the `str` type.
421     ///
422     /// # Examples
423     ///
424     /// ```
425     /// let mut v = String::from("🗻∈🌏");
426     /// unsafe {
427     ///     assert_eq!("🗻", v.get_unchecked_mut(0..4));
428     ///     assert_eq!("∈", v.get_unchecked_mut(4..7));
429     ///     assert_eq!("🌏", v.get_unchecked_mut(7..11));
430     /// }
431     /// ```
432     #[stable(feature = "str_checked_slicing", since = "1.20.0")]
433     #[inline]
434     pub unsafe fn get_unchecked_mut<I: SliceIndex<str>>(&mut self, i: I) -> &mut I::Output {
435         // SAFETY: the caller must uphold the safety contract for `get_unchecked_mut`;
436         // the slice is dereferencable because `self` is a safe reference.
437         // The returned pointer is safe because impls of `SliceIndex` have to guarantee that it is.
438         unsafe { &mut *i.get_unchecked_mut(self) }
439     }
440
441     /// Creates a string slice from another string slice, bypassing safety
442     /// checks.
443     ///
444     /// This is generally not recommended, use with caution! For a safe
445     /// alternative see [`str`] and [`Index`].
446     ///
447     /// [`Index`]: crate::ops::Index
448     ///
449     /// This new slice goes from `begin` to `end`, including `begin` but
450     /// excluding `end`.
451     ///
452     /// To get a mutable string slice instead, see the
453     /// [`slice_mut_unchecked`] method.
454     ///
455     /// [`slice_mut_unchecked`]: str::slice_mut_unchecked
456     ///
457     /// # Safety
458     ///
459     /// Callers of this function are responsible that three preconditions are
460     /// satisfied:
461     ///
462     /// * `begin` must not exceed `end`.
463     /// * `begin` and `end` must be byte positions within the string slice.
464     /// * `begin` and `end` must lie on UTF-8 sequence boundaries.
465     ///
466     /// # Examples
467     ///
468     /// Basic usage:
469     ///
470     /// ```
471     /// let s = "Löwe 老虎 Léopard";
472     ///
473     /// unsafe {
474     ///     assert_eq!("Löwe 老虎 Léopard", s.slice_unchecked(0, 21));
475     /// }
476     ///
477     /// let s = "Hello, world!";
478     ///
479     /// unsafe {
480     ///     assert_eq!("world", s.slice_unchecked(7, 12));
481     /// }
482     /// ```
483     #[stable(feature = "rust1", since = "1.0.0")]
484     #[rustc_deprecated(since = "1.29.0", reason = "use `get_unchecked(begin..end)` instead")]
485     #[inline]
486     pub unsafe fn slice_unchecked(&self, begin: usize, end: usize) -> &str {
487         // SAFETY: the caller must uphold the safety contract for `get_unchecked`;
488         // the slice is dereferencable because `self` is a safe reference.
489         // The returned pointer is safe because impls of `SliceIndex` have to guarantee that it is.
490         unsafe { &*(begin..end).get_unchecked(self) }
491     }
492
493     /// Creates a string slice from another string slice, bypassing safety
494     /// checks.
495     /// This is generally not recommended, use with caution! For a safe
496     /// alternative see [`str`] and [`IndexMut`].
497     ///
498     /// [`IndexMut`]: crate::ops::IndexMut
499     ///
500     /// This new slice goes from `begin` to `end`, including `begin` but
501     /// excluding `end`.
502     ///
503     /// To get an immutable string slice instead, see the
504     /// [`slice_unchecked`] method.
505     ///
506     /// [`slice_unchecked`]: str::slice_unchecked
507     ///
508     /// # Safety
509     ///
510     /// Callers of this function are responsible that three preconditions are
511     /// satisfied:
512     ///
513     /// * `begin` must not exceed `end`.
514     /// * `begin` and `end` must be byte positions within the string slice.
515     /// * `begin` and `end` must lie on UTF-8 sequence boundaries.
516     #[stable(feature = "str_slice_mut", since = "1.5.0")]
517     #[rustc_deprecated(since = "1.29.0", reason = "use `get_unchecked_mut(begin..end)` instead")]
518     #[inline]
519     pub unsafe fn slice_mut_unchecked(&mut self, begin: usize, end: usize) -> &mut str {
520         // SAFETY: the caller must uphold the safety contract for `get_unchecked_mut`;
521         // the slice is dereferencable because `self` is a safe reference.
522         // The returned pointer is safe because impls of `SliceIndex` have to guarantee that it is.
523         unsafe { &mut *(begin..end).get_unchecked_mut(self) }
524     }
525
526     /// Divide one string slice into two at an index.
527     ///
528     /// The argument, `mid`, should be a byte offset from the start of the
529     /// string. It must also be on the boundary of a UTF-8 code point.
530     ///
531     /// The two slices returned go from the start of the string slice to `mid`,
532     /// and from `mid` to the end of the string slice.
533     ///
534     /// To get mutable string slices instead, see the [`split_at_mut`]
535     /// method.
536     ///
537     /// [`split_at_mut`]: str::split_at_mut
538     ///
539     /// # Panics
540     ///
541     /// Panics if `mid` is not on a UTF-8 code point boundary, or if it is
542     /// past the end of the last code point of the string slice.
543     ///
544     /// # Examples
545     ///
546     /// Basic usage:
547     ///
548     /// ```
549     /// let s = "Per Martin-Löf";
550     ///
551     /// let (first, last) = s.split_at(3);
552     ///
553     /// assert_eq!("Per", first);
554     /// assert_eq!(" Martin-Löf", last);
555     /// ```
556     #[inline]
557     #[stable(feature = "str_split_at", since = "1.4.0")]
558     pub fn split_at(&self, mid: usize) -> (&str, &str) {
559         // is_char_boundary checks that the index is in [0, .len()]
560         if self.is_char_boundary(mid) {
561             // SAFETY: just checked that `mid` is on a char boundary.
562             unsafe { (self.get_unchecked(0..mid), self.get_unchecked(mid..self.len())) }
563         } else {
564             slice_error_fail(self, 0, mid)
565         }
566     }
567
568     /// Divide one mutable string slice into two at an index.
569     ///
570     /// The argument, `mid`, should be a byte offset from the start of the
571     /// string. It must also be on the boundary of a UTF-8 code point.
572     ///
573     /// The two slices returned go from the start of the string slice to `mid`,
574     /// and from `mid` to the end of the string slice.
575     ///
576     /// To get immutable string slices instead, see the [`split_at`] method.
577     ///
578     /// [`split_at`]: str::split_at
579     ///
580     /// # Panics
581     ///
582     /// Panics if `mid` is not on a UTF-8 code point boundary, or if it is
583     /// past the end of the last code point of the string slice.
584     ///
585     /// # Examples
586     ///
587     /// Basic usage:
588     ///
589     /// ```
590     /// let mut s = "Per Martin-Löf".to_string();
591     /// {
592     ///     let (first, last) = s.split_at_mut(3);
593     ///     first.make_ascii_uppercase();
594     ///     assert_eq!("PER", first);
595     ///     assert_eq!(" Martin-Löf", last);
596     /// }
597     /// assert_eq!("PER Martin-Löf", s);
598     /// ```
599     #[inline]
600     #[stable(feature = "str_split_at", since = "1.4.0")]
601     pub fn split_at_mut(&mut self, mid: usize) -> (&mut str, &mut str) {
602         // is_char_boundary checks that the index is in [0, .len()]
603         if self.is_char_boundary(mid) {
604             let len = self.len();
605             let ptr = self.as_mut_ptr();
606             // SAFETY: just checked that `mid` is on a char boundary.
607             unsafe {
608                 (
609                     from_utf8_unchecked_mut(slice::from_raw_parts_mut(ptr, mid)),
610                     from_utf8_unchecked_mut(slice::from_raw_parts_mut(ptr.add(mid), len - mid)),
611                 )
612             }
613         } else {
614             slice_error_fail(self, 0, mid)
615         }
616     }
617
618     /// Returns an iterator over the [`char`]s of a string slice.
619     ///
620     /// As a string slice consists of valid UTF-8, we can iterate through a
621     /// string slice by [`char`]. This method returns such an iterator.
622     ///
623     /// It's important to remember that [`char`] represents a Unicode Scalar
624     /// Value, and may not match your idea of what a 'character' is. Iteration
625     /// over grapheme clusters may be what you actually want. This functionality
626     /// is not provided by Rust's standard library, check crates.io instead.
627     ///
628     /// # Examples
629     ///
630     /// Basic usage:
631     ///
632     /// ```
633     /// let word = "goodbye";
634     ///
635     /// let count = word.chars().count();
636     /// assert_eq!(7, count);
637     ///
638     /// let mut chars = word.chars();
639     ///
640     /// assert_eq!(Some('g'), chars.next());
641     /// assert_eq!(Some('o'), chars.next());
642     /// assert_eq!(Some('o'), chars.next());
643     /// assert_eq!(Some('d'), chars.next());
644     /// assert_eq!(Some('b'), chars.next());
645     /// assert_eq!(Some('y'), chars.next());
646     /// assert_eq!(Some('e'), chars.next());
647     ///
648     /// assert_eq!(None, chars.next());
649     /// ```
650     ///
651     /// Remember, [`char`]s may not match your intuition about characters:
652     ///
653     /// [`char`]: prim@char
654     ///
655     /// ```
656     /// let y = "y̆";
657     ///
658     /// let mut chars = y.chars();
659     ///
660     /// assert_eq!(Some('y'), chars.next()); // not 'y̆'
661     /// assert_eq!(Some('\u{0306}'), chars.next());
662     ///
663     /// assert_eq!(None, chars.next());
664     /// ```
665     #[stable(feature = "rust1", since = "1.0.0")]
666     #[inline]
667     pub fn chars(&self) -> Chars<'_> {
668         Chars { iter: self.as_bytes().iter() }
669     }
670
671     /// Returns an iterator over the [`char`]s of a string slice, and their
672     /// positions.
673     ///
674     /// As a string slice consists of valid UTF-8, we can iterate through a
675     /// string slice by [`char`]. This method returns an iterator of both
676     /// these [`char`]s, as well as their byte positions.
677     ///
678     /// The iterator yields tuples. The position is first, the [`char`] is
679     /// second.
680     ///
681     /// # Examples
682     ///
683     /// Basic usage:
684     ///
685     /// ```
686     /// let word = "goodbye";
687     ///
688     /// let count = word.char_indices().count();
689     /// assert_eq!(7, count);
690     ///
691     /// let mut char_indices = word.char_indices();
692     ///
693     /// assert_eq!(Some((0, 'g')), char_indices.next());
694     /// assert_eq!(Some((1, 'o')), char_indices.next());
695     /// assert_eq!(Some((2, 'o')), char_indices.next());
696     /// assert_eq!(Some((3, 'd')), char_indices.next());
697     /// assert_eq!(Some((4, 'b')), char_indices.next());
698     /// assert_eq!(Some((5, 'y')), char_indices.next());
699     /// assert_eq!(Some((6, 'e')), char_indices.next());
700     ///
701     /// assert_eq!(None, char_indices.next());
702     /// ```
703     ///
704     /// Remember, [`char`]s may not match your intuition about characters:
705     ///
706     /// [`char`]: prim@char
707     ///
708     /// ```
709     /// let yes = "y̆es";
710     ///
711     /// let mut char_indices = yes.char_indices();
712     ///
713     /// assert_eq!(Some((0, 'y')), char_indices.next()); // not (0, 'y̆')
714     /// assert_eq!(Some((1, '\u{0306}')), char_indices.next());
715     ///
716     /// // note the 3 here - the last character took up two bytes
717     /// assert_eq!(Some((3, 'e')), char_indices.next());
718     /// assert_eq!(Some((4, 's')), char_indices.next());
719     ///
720     /// assert_eq!(None, char_indices.next());
721     /// ```
722     #[stable(feature = "rust1", since = "1.0.0")]
723     #[inline]
724     pub fn char_indices(&self) -> CharIndices<'_> {
725         CharIndices { front_offset: 0, iter: self.chars() }
726     }
727
728     /// An iterator over the bytes of a string slice.
729     ///
730     /// As a string slice consists of a sequence of bytes, we can iterate
731     /// through a string slice by byte. This method returns such an iterator.
732     ///
733     /// # Examples
734     ///
735     /// Basic usage:
736     ///
737     /// ```
738     /// let mut bytes = "bors".bytes();
739     ///
740     /// assert_eq!(Some(b'b'), bytes.next());
741     /// assert_eq!(Some(b'o'), bytes.next());
742     /// assert_eq!(Some(b'r'), bytes.next());
743     /// assert_eq!(Some(b's'), bytes.next());
744     ///
745     /// assert_eq!(None, bytes.next());
746     /// ```
747     #[stable(feature = "rust1", since = "1.0.0")]
748     #[inline]
749     pub fn bytes(&self) -> Bytes<'_> {
750         Bytes(self.as_bytes().iter().copied())
751     }
752
753     /// Splits a string slice by whitespace.
754     ///
755     /// The iterator returned will return string slices that are sub-slices of
756     /// the original string slice, separated by any amount of whitespace.
757     ///
758     /// 'Whitespace' is defined according to the terms of the Unicode Derived
759     /// Core Property `White_Space`. If you only want to split on ASCII whitespace
760     /// instead, use [`split_ascii_whitespace`].
761     ///
762     /// [`split_ascii_whitespace`]: str::split_ascii_whitespace
763     ///
764     /// # Examples
765     ///
766     /// Basic usage:
767     ///
768     /// ```
769     /// let mut iter = "A few words".split_whitespace();
770     ///
771     /// assert_eq!(Some("A"), iter.next());
772     /// assert_eq!(Some("few"), iter.next());
773     /// assert_eq!(Some("words"), iter.next());
774     ///
775     /// assert_eq!(None, iter.next());
776     /// ```
777     ///
778     /// All kinds of whitespace are considered:
779     ///
780     /// ```
781     /// let mut iter = " Mary   had\ta\u{2009}little  \n\t lamb".split_whitespace();
782     /// assert_eq!(Some("Mary"), iter.next());
783     /// assert_eq!(Some("had"), iter.next());
784     /// assert_eq!(Some("a"), iter.next());
785     /// assert_eq!(Some("little"), iter.next());
786     /// assert_eq!(Some("lamb"), iter.next());
787     ///
788     /// assert_eq!(None, iter.next());
789     /// ```
790     #[stable(feature = "split_whitespace", since = "1.1.0")]
791     #[inline]
792     pub fn split_whitespace(&self) -> SplitWhitespace<'_> {
793         SplitWhitespace { inner: self.split(IsWhitespace).filter(IsNotEmpty) }
794     }
795
796     /// Splits a string slice by ASCII whitespace.
797     ///
798     /// The iterator returned will return string slices that are sub-slices of
799     /// the original string slice, separated by any amount of ASCII whitespace.
800     ///
801     /// To split by Unicode `Whitespace` instead, use [`split_whitespace`].
802     ///
803     /// [`split_whitespace`]: str::split_whitespace
804     ///
805     /// # Examples
806     ///
807     /// Basic usage:
808     ///
809     /// ```
810     /// let mut iter = "A few words".split_ascii_whitespace();
811     ///
812     /// assert_eq!(Some("A"), iter.next());
813     /// assert_eq!(Some("few"), iter.next());
814     /// assert_eq!(Some("words"), iter.next());
815     ///
816     /// assert_eq!(None, iter.next());
817     /// ```
818     ///
819     /// All kinds of ASCII whitespace are considered:
820     ///
821     /// ```
822     /// let mut iter = " Mary   had\ta little  \n\t lamb".split_ascii_whitespace();
823     /// assert_eq!(Some("Mary"), iter.next());
824     /// assert_eq!(Some("had"), iter.next());
825     /// assert_eq!(Some("a"), iter.next());
826     /// assert_eq!(Some("little"), iter.next());
827     /// assert_eq!(Some("lamb"), iter.next());
828     ///
829     /// assert_eq!(None, iter.next());
830     /// ```
831     #[stable(feature = "split_ascii_whitespace", since = "1.34.0")]
832     #[inline]
833     pub fn split_ascii_whitespace(&self) -> SplitAsciiWhitespace<'_> {
834         let inner =
835             self.as_bytes().split(IsAsciiWhitespace).filter(BytesIsNotEmpty).map(UnsafeBytesToStr);
836         SplitAsciiWhitespace { inner }
837     }
838
839     /// An iterator over the lines of a string, as string slices.
840     ///
841     /// Lines are ended with either a newline (`\n`) or a carriage return with
842     /// a line feed (`\r\n`).
843     ///
844     /// The final line ending is optional. A string that ends with a final line
845     /// ending will return the same lines as an otherwise identical string
846     /// without a final line ending.
847     ///
848     /// # Examples
849     ///
850     /// Basic usage:
851     ///
852     /// ```
853     /// let text = "foo\r\nbar\n\nbaz\n";
854     /// let mut lines = text.lines();
855     ///
856     /// assert_eq!(Some("foo"), lines.next());
857     /// assert_eq!(Some("bar"), lines.next());
858     /// assert_eq!(Some(""), lines.next());
859     /// assert_eq!(Some("baz"), lines.next());
860     ///
861     /// assert_eq!(None, lines.next());
862     /// ```
863     ///
864     /// The final line ending isn't required:
865     ///
866     /// ```
867     /// let text = "foo\nbar\n\r\nbaz";
868     /// let mut lines = text.lines();
869     ///
870     /// assert_eq!(Some("foo"), lines.next());
871     /// assert_eq!(Some("bar"), lines.next());
872     /// assert_eq!(Some(""), lines.next());
873     /// assert_eq!(Some("baz"), lines.next());
874     ///
875     /// assert_eq!(None, lines.next());
876     /// ```
877     #[stable(feature = "rust1", since = "1.0.0")]
878     #[inline]
879     pub fn lines(&self) -> Lines<'_> {
880         Lines(self.split_terminator('\n').map(LinesAnyMap))
881     }
882
883     /// An iterator over the lines of a string.
884     #[stable(feature = "rust1", since = "1.0.0")]
885     #[rustc_deprecated(since = "1.4.0", reason = "use lines() instead now")]
886     #[inline]
887     #[allow(deprecated)]
888     pub fn lines_any(&self) -> LinesAny<'_> {
889         LinesAny(self.lines())
890     }
891
892     /// Returns an iterator of `u16` over the string encoded as UTF-16.
893     ///
894     /// # Examples
895     ///
896     /// Basic usage:
897     ///
898     /// ```
899     /// let text = "Zażółć gęślą jaźń";
900     ///
901     /// let utf8_len = text.len();
902     /// let utf16_len = text.encode_utf16().count();
903     ///
904     /// assert!(utf16_len <= utf8_len);
905     /// ```
906     #[stable(feature = "encode_utf16", since = "1.8.0")]
907     pub fn encode_utf16(&self) -> EncodeUtf16<'_> {
908         EncodeUtf16 { chars: self.chars(), extra: 0 }
909     }
910
911     /// Returns `true` if the given pattern matches a sub-slice of
912     /// this string slice.
913     ///
914     /// Returns `false` if it does not.
915     ///
916     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
917     /// function or closure that determines if a character matches.
918     ///
919     /// [`char`]: prim@char
920     /// [pattern]: self::pattern
921     ///
922     /// # Examples
923     ///
924     /// Basic usage:
925     ///
926     /// ```
927     /// let bananas = "bananas";
928     ///
929     /// assert!(bananas.contains("nana"));
930     /// assert!(!bananas.contains("apples"));
931     /// ```
932     #[stable(feature = "rust1", since = "1.0.0")]
933     #[inline]
934     pub fn contains<'a, P: Pattern<'a>>(&'a self, pat: P) -> bool {
935         pat.is_contained_in(self)
936     }
937
938     /// Returns `true` if the given pattern matches a prefix of this
939     /// string slice.
940     ///
941     /// Returns `false` if it does not.
942     ///
943     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
944     /// function or closure that determines if a character matches.
945     ///
946     /// [`char`]: prim@char
947     /// [pattern]: self::pattern
948     ///
949     /// # Examples
950     ///
951     /// Basic usage:
952     ///
953     /// ```
954     /// let bananas = "bananas";
955     ///
956     /// assert!(bananas.starts_with("bana"));
957     /// assert!(!bananas.starts_with("nana"));
958     /// ```
959     #[stable(feature = "rust1", since = "1.0.0")]
960     pub fn starts_with<'a, P: Pattern<'a>>(&'a self, pat: P) -> bool {
961         pat.is_prefix_of(self)
962     }
963
964     /// Returns `true` if the given pattern matches a suffix of this
965     /// string slice.
966     ///
967     /// Returns `false` if it does not.
968     ///
969     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
970     /// function or closure that determines if a character matches.
971     ///
972     /// [`char`]: prim@char
973     /// [pattern]: self::pattern
974     ///
975     /// # Examples
976     ///
977     /// Basic usage:
978     ///
979     /// ```
980     /// let bananas = "bananas";
981     ///
982     /// assert!(bananas.ends_with("anas"));
983     /// assert!(!bananas.ends_with("nana"));
984     /// ```
985     #[stable(feature = "rust1", since = "1.0.0")]
986     pub fn ends_with<'a, P>(&'a self, pat: P) -> bool
987     where
988         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
989     {
990         pat.is_suffix_of(self)
991     }
992
993     /// Returns the byte index of the first character of this string slice that
994     /// matches the pattern.
995     ///
996     /// Returns [`None`] if the pattern doesn't match.
997     ///
998     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
999     /// function or closure that determines if a character matches.
1000     ///
1001     /// [`char`]: prim@char
1002     /// [pattern]: self::pattern
1003     ///
1004     /// # Examples
1005     ///
1006     /// Simple patterns:
1007     ///
1008     /// ```
1009     /// let s = "Löwe 老虎 Léopard Gepardi";
1010     ///
1011     /// assert_eq!(s.find('L'), Some(0));
1012     /// assert_eq!(s.find('é'), Some(14));
1013     /// assert_eq!(s.find("pard"), Some(17));
1014     /// ```
1015     ///
1016     /// More complex patterns using point-free style and closures:
1017     ///
1018     /// ```
1019     /// let s = "Löwe 老虎 Léopard";
1020     ///
1021     /// assert_eq!(s.find(char::is_whitespace), Some(5));
1022     /// assert_eq!(s.find(char::is_lowercase), Some(1));
1023     /// assert_eq!(s.find(|c: char| c.is_whitespace() || c.is_lowercase()), Some(1));
1024     /// assert_eq!(s.find(|c: char| (c < 'o') && (c > 'a')), Some(4));
1025     /// ```
1026     ///
1027     /// Not finding the pattern:
1028     ///
1029     /// ```
1030     /// let s = "Löwe 老虎 Léopard";
1031     /// let x: &[_] = &['1', '2'];
1032     ///
1033     /// assert_eq!(s.find(x), None);
1034     /// ```
1035     #[stable(feature = "rust1", since = "1.0.0")]
1036     #[inline]
1037     pub fn find<'a, P: Pattern<'a>>(&'a self, pat: P) -> Option<usize> {
1038         pat.into_searcher(self).next_match().map(|(i, _)| i)
1039     }
1040
1041     /// Returns the byte index for the first character of the rightmost match of the pattern in
1042     /// this string slice.
1043     ///
1044     /// Returns [`None`] if the pattern doesn't match.
1045     ///
1046     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1047     /// function or closure that determines if a character matches.
1048     ///
1049     /// [`char`]: prim@char
1050     /// [pattern]: self::pattern
1051     ///
1052     /// # Examples
1053     ///
1054     /// Simple patterns:
1055     ///
1056     /// ```
1057     /// let s = "Löwe 老虎 Léopard Gepardi";
1058     ///
1059     /// assert_eq!(s.rfind('L'), Some(13));
1060     /// assert_eq!(s.rfind('é'), Some(14));
1061     /// assert_eq!(s.rfind("pard"), Some(24));
1062     /// ```
1063     ///
1064     /// More complex patterns with closures:
1065     ///
1066     /// ```
1067     /// let s = "Löwe 老虎 Léopard";
1068     ///
1069     /// assert_eq!(s.rfind(char::is_whitespace), Some(12));
1070     /// assert_eq!(s.rfind(char::is_lowercase), Some(20));
1071     /// ```
1072     ///
1073     /// Not finding the pattern:
1074     ///
1075     /// ```
1076     /// let s = "Löwe 老虎 Léopard";
1077     /// let x: &[_] = &['1', '2'];
1078     ///
1079     /// assert_eq!(s.rfind(x), None);
1080     /// ```
1081     #[stable(feature = "rust1", since = "1.0.0")]
1082     #[inline]
1083     pub fn rfind<'a, P>(&'a self, pat: P) -> Option<usize>
1084     where
1085         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
1086     {
1087         pat.into_searcher(self).next_match_back().map(|(i, _)| i)
1088     }
1089
1090     /// An iterator over substrings of this string slice, separated by
1091     /// characters matched by a pattern.
1092     ///
1093     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1094     /// function or closure that determines if a character matches.
1095     ///
1096     /// [`char`]: prim@char
1097     /// [pattern]: self::pattern
1098     ///
1099     /// # Iterator behavior
1100     ///
1101     /// The returned iterator will be a [`DoubleEndedIterator`] if the pattern
1102     /// allows a reverse search and forward/reverse search yields the same
1103     /// elements. This is true for, e.g., [`char`], but not for `&str`.
1104     ///
1105     /// If the pattern allows a reverse search but its results might differ
1106     /// from a forward search, the [`rsplit`] method can be used.
1107     ///
1108     /// [`rsplit`]: str::rsplit
1109     ///
1110     /// # Examples
1111     ///
1112     /// Simple patterns:
1113     ///
1114     /// ```
1115     /// let v: Vec<&str> = "Mary had a little lamb".split(' ').collect();
1116     /// assert_eq!(v, ["Mary", "had", "a", "little", "lamb"]);
1117     ///
1118     /// let v: Vec<&str> = "".split('X').collect();
1119     /// assert_eq!(v, [""]);
1120     ///
1121     /// let v: Vec<&str> = "lionXXtigerXleopard".split('X').collect();
1122     /// assert_eq!(v, ["lion", "", "tiger", "leopard"]);
1123     ///
1124     /// let v: Vec<&str> = "lion::tiger::leopard".split("::").collect();
1125     /// assert_eq!(v, ["lion", "tiger", "leopard"]);
1126     ///
1127     /// let v: Vec<&str> = "abc1def2ghi".split(char::is_numeric).collect();
1128     /// assert_eq!(v, ["abc", "def", "ghi"]);
1129     ///
1130     /// let v: Vec<&str> = "lionXtigerXleopard".split(char::is_uppercase).collect();
1131     /// assert_eq!(v, ["lion", "tiger", "leopard"]);
1132     /// ```
1133     ///
1134     /// A more complex pattern, using a closure:
1135     ///
1136     /// ```
1137     /// let v: Vec<&str> = "abc1defXghi".split(|c| c == '1' || c == 'X').collect();
1138     /// assert_eq!(v, ["abc", "def", "ghi"]);
1139     /// ```
1140     ///
1141     /// If a string contains multiple contiguous separators, you will end up
1142     /// with empty strings in the output:
1143     ///
1144     /// ```
1145     /// let x = "||||a||b|c".to_string();
1146     /// let d: Vec<_> = x.split('|').collect();
1147     ///
1148     /// assert_eq!(d, &["", "", "", "", "a", "", "b", "c"]);
1149     /// ```
1150     ///
1151     /// Contiguous separators are separated by the empty string.
1152     ///
1153     /// ```
1154     /// let x = "(///)".to_string();
1155     /// let d: Vec<_> = x.split('/').collect();
1156     ///
1157     /// assert_eq!(d, &["(", "", "", ")"]);
1158     /// ```
1159     ///
1160     /// Separators at the start or end of a string are neighbored
1161     /// by empty strings.
1162     ///
1163     /// ```
1164     /// let d: Vec<_> = "010".split("0").collect();
1165     /// assert_eq!(d, &["", "1", ""]);
1166     /// ```
1167     ///
1168     /// When the empty string is used as a separator, it separates
1169     /// every character in the string, along with the beginning
1170     /// and end of the string.
1171     ///
1172     /// ```
1173     /// let f: Vec<_> = "rust".split("").collect();
1174     /// assert_eq!(f, &["", "r", "u", "s", "t", ""]);
1175     /// ```
1176     ///
1177     /// Contiguous separators can lead to possibly surprising behavior
1178     /// when whitespace is used as the separator. This code is correct:
1179     ///
1180     /// ```
1181     /// let x = "    a  b c".to_string();
1182     /// let d: Vec<_> = x.split(' ').collect();
1183     ///
1184     /// assert_eq!(d, &["", "", "", "", "a", "", "b", "c"]);
1185     /// ```
1186     ///
1187     /// It does _not_ give you:
1188     ///
1189     /// ```,ignore
1190     /// assert_eq!(d, &["a", "b", "c"]);
1191     /// ```
1192     ///
1193     /// Use [`split_whitespace`] for this behavior.
1194     ///
1195     /// [`split_whitespace`]: str::split_whitespace
1196     #[stable(feature = "rust1", since = "1.0.0")]
1197     #[inline]
1198     pub fn split<'a, P: Pattern<'a>>(&'a self, pat: P) -> Split<'a, P> {
1199         Split(SplitInternal {
1200             start: 0,
1201             end: self.len(),
1202             matcher: pat.into_searcher(self),
1203             allow_trailing_empty: true,
1204             finished: false,
1205         })
1206     }
1207
1208     /// An iterator over substrings of this string slice, separated by
1209     /// characters matched by a pattern. Differs from the iterator produced by
1210     /// `split` in that `split_inclusive` leaves the matched part as the
1211     /// terminator of the substring.
1212     ///
1213     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1214     /// function or closure that determines if a character matches.
1215     ///
1216     /// [`char`]: prim@char
1217     /// [pattern]: self::pattern
1218     ///
1219     /// # Examples
1220     ///
1221     /// ```
1222     /// #![feature(split_inclusive)]
1223     /// let v: Vec<&str> = "Mary had a little lamb\nlittle lamb\nlittle lamb."
1224     ///     .split_inclusive('\n').collect();
1225     /// assert_eq!(v, ["Mary had a little lamb\n", "little lamb\n", "little lamb."]);
1226     /// ```
1227     ///
1228     /// If the last element of the string is matched,
1229     /// that element will be considered the terminator of the preceding substring.
1230     /// That substring will be the last item returned by the iterator.
1231     ///
1232     /// ```
1233     /// #![feature(split_inclusive)]
1234     /// let v: Vec<&str> = "Mary had a little lamb\nlittle lamb\nlittle lamb.\n"
1235     ///     .split_inclusive('\n').collect();
1236     /// assert_eq!(v, ["Mary had a little lamb\n", "little lamb\n", "little lamb.\n"]);
1237     /// ```
1238     #[unstable(feature = "split_inclusive", issue = "72360")]
1239     #[inline]
1240     pub fn split_inclusive<'a, P: Pattern<'a>>(&'a self, pat: P) -> SplitInclusive<'a, P> {
1241         SplitInclusive(SplitInternal {
1242             start: 0,
1243             end: self.len(),
1244             matcher: pat.into_searcher(self),
1245             allow_trailing_empty: false,
1246             finished: false,
1247         })
1248     }
1249
1250     /// An iterator over substrings of the given string slice, separated by
1251     /// characters matched by a pattern and yielded in reverse order.
1252     ///
1253     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1254     /// function or closure that determines if a character matches.
1255     ///
1256     /// [`char`]: prim@char
1257     /// [pattern]: self::pattern
1258     ///
1259     /// # Iterator behavior
1260     ///
1261     /// The returned iterator requires that the pattern supports a reverse
1262     /// search, and it will be a [`DoubleEndedIterator`] if a forward/reverse
1263     /// search yields the same elements.
1264     ///
1265     /// For iterating from the front, the [`split`] method can be used.
1266     ///
1267     /// [`split`]: str::split
1268     ///
1269     /// # Examples
1270     ///
1271     /// Simple patterns:
1272     ///
1273     /// ```
1274     /// let v: Vec<&str> = "Mary had a little lamb".rsplit(' ').collect();
1275     /// assert_eq!(v, ["lamb", "little", "a", "had", "Mary"]);
1276     ///
1277     /// let v: Vec<&str> = "".rsplit('X').collect();
1278     /// assert_eq!(v, [""]);
1279     ///
1280     /// let v: Vec<&str> = "lionXXtigerXleopard".rsplit('X').collect();
1281     /// assert_eq!(v, ["leopard", "tiger", "", "lion"]);
1282     ///
1283     /// let v: Vec<&str> = "lion::tiger::leopard".rsplit("::").collect();
1284     /// assert_eq!(v, ["leopard", "tiger", "lion"]);
1285     /// ```
1286     ///
1287     /// A more complex pattern, using a closure:
1288     ///
1289     /// ```
1290     /// let v: Vec<&str> = "abc1defXghi".rsplit(|c| c == '1' || c == 'X').collect();
1291     /// assert_eq!(v, ["ghi", "def", "abc"]);
1292     /// ```
1293     #[stable(feature = "rust1", since = "1.0.0")]
1294     #[inline]
1295     pub fn rsplit<'a, P>(&'a self, pat: P) -> RSplit<'a, P>
1296     where
1297         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
1298     {
1299         RSplit(self.split(pat).0)
1300     }
1301
1302     /// An iterator over substrings of the given string slice, separated by
1303     /// characters matched by a pattern.
1304     ///
1305     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1306     /// function or closure that determines if a character matches.
1307     ///
1308     /// [`char`]: prim@char
1309     /// [pattern]: self::pattern
1310     ///
1311     /// Equivalent to [`split`], except that the trailing substring
1312     /// is skipped if empty.
1313     ///
1314     /// [`split`]: str::split
1315     ///
1316     /// This method can be used for string data that is _terminated_,
1317     /// rather than _separated_ by a pattern.
1318     ///
1319     /// # Iterator behavior
1320     ///
1321     /// The returned iterator will be a [`DoubleEndedIterator`] if the pattern
1322     /// allows a reverse search and forward/reverse search yields the same
1323     /// elements. This is true for, e.g., [`char`], but not for `&str`.
1324     ///
1325     /// If the pattern allows a reverse search but its results might differ
1326     /// from a forward search, the [`rsplit_terminator`] method can be used.
1327     ///
1328     /// [`rsplit_terminator`]: str::rsplit_terminator
1329     ///
1330     /// # Examples
1331     ///
1332     /// Basic usage:
1333     ///
1334     /// ```
1335     /// let v: Vec<&str> = "A.B.".split_terminator('.').collect();
1336     /// assert_eq!(v, ["A", "B"]);
1337     ///
1338     /// let v: Vec<&str> = "A..B..".split_terminator(".").collect();
1339     /// assert_eq!(v, ["A", "", "B", ""]);
1340     /// ```
1341     #[stable(feature = "rust1", since = "1.0.0")]
1342     #[inline]
1343     pub fn split_terminator<'a, P: Pattern<'a>>(&'a self, pat: P) -> SplitTerminator<'a, P> {
1344         SplitTerminator(SplitInternal { allow_trailing_empty: false, ..self.split(pat).0 })
1345     }
1346
1347     /// An iterator over substrings of `self`, separated by characters
1348     /// matched by a pattern and yielded in reverse order.
1349     ///
1350     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1351     /// function or closure that determines if a character matches.
1352     ///
1353     /// [`char`]: prim@char
1354     /// [pattern]: self::pattern
1355     ///
1356     /// Equivalent to [`split`], except that the trailing substring is
1357     /// skipped if empty.
1358     ///
1359     /// [`split`]: str::split
1360     ///
1361     /// This method can be used for string data that is _terminated_,
1362     /// rather than _separated_ by a pattern.
1363     ///
1364     /// # Iterator behavior
1365     ///
1366     /// The returned iterator requires that the pattern supports a
1367     /// reverse search, and it will be double ended if a forward/reverse
1368     /// search yields the same elements.
1369     ///
1370     /// For iterating from the front, the [`split_terminator`] method can be
1371     /// used.
1372     ///
1373     /// [`split_terminator`]: str::split_terminator
1374     ///
1375     /// # Examples
1376     ///
1377     /// ```
1378     /// let v: Vec<&str> = "A.B.".rsplit_terminator('.').collect();
1379     /// assert_eq!(v, ["B", "A"]);
1380     ///
1381     /// let v: Vec<&str> = "A..B..".rsplit_terminator(".").collect();
1382     /// assert_eq!(v, ["", "B", "", "A"]);
1383     /// ```
1384     #[stable(feature = "rust1", since = "1.0.0")]
1385     #[inline]
1386     pub fn rsplit_terminator<'a, P>(&'a self, pat: P) -> RSplitTerminator<'a, P>
1387     where
1388         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
1389     {
1390         RSplitTerminator(self.split_terminator(pat).0)
1391     }
1392
1393     /// An iterator over substrings of the given string slice, separated by a
1394     /// pattern, restricted to returning at most `n` items.
1395     ///
1396     /// If `n` substrings are returned, the last substring (the `n`th substring)
1397     /// will contain the remainder of the string.
1398     ///
1399     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1400     /// function or closure that determines if a character matches.
1401     ///
1402     /// [`char`]: prim@char
1403     /// [pattern]: self::pattern
1404     ///
1405     /// # Iterator behavior
1406     ///
1407     /// The returned iterator will not be double ended, because it is
1408     /// not efficient to support.
1409     ///
1410     /// If the pattern allows a reverse search, the [`rsplitn`] method can be
1411     /// used.
1412     ///
1413     /// [`rsplitn`]: str::rsplitn
1414     ///
1415     /// # Examples
1416     ///
1417     /// Simple patterns:
1418     ///
1419     /// ```
1420     /// let v: Vec<&str> = "Mary had a little lambda".splitn(3, ' ').collect();
1421     /// assert_eq!(v, ["Mary", "had", "a little lambda"]);
1422     ///
1423     /// let v: Vec<&str> = "lionXXtigerXleopard".splitn(3, "X").collect();
1424     /// assert_eq!(v, ["lion", "", "tigerXleopard"]);
1425     ///
1426     /// let v: Vec<&str> = "abcXdef".splitn(1, 'X').collect();
1427     /// assert_eq!(v, ["abcXdef"]);
1428     ///
1429     /// let v: Vec<&str> = "".splitn(1, 'X').collect();
1430     /// assert_eq!(v, [""]);
1431     /// ```
1432     ///
1433     /// A more complex pattern, using a closure:
1434     ///
1435     /// ```
1436     /// let v: Vec<&str> = "abc1defXghi".splitn(2, |c| c == '1' || c == 'X').collect();
1437     /// assert_eq!(v, ["abc", "defXghi"]);
1438     /// ```
1439     #[stable(feature = "rust1", since = "1.0.0")]
1440     #[inline]
1441     pub fn splitn<'a, P: Pattern<'a>>(&'a self, n: usize, pat: P) -> SplitN<'a, P> {
1442         SplitN(SplitNInternal { iter: self.split(pat).0, count: n })
1443     }
1444
1445     /// An iterator over substrings of this string slice, separated by a
1446     /// pattern, starting from the end of the string, restricted to returning
1447     /// at most `n` items.
1448     ///
1449     /// If `n` substrings are returned, the last substring (the `n`th substring)
1450     /// will contain the remainder of the string.
1451     ///
1452     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1453     /// function or closure that determines if a character matches.
1454     ///
1455     /// [`char`]: prim@char
1456     /// [pattern]: self::pattern
1457     ///
1458     /// # Iterator behavior
1459     ///
1460     /// The returned iterator will not be double ended, because it is not
1461     /// efficient to support.
1462     ///
1463     /// For splitting from the front, the [`splitn`] method can be used.
1464     ///
1465     /// [`splitn`]: str::splitn
1466     ///
1467     /// # Examples
1468     ///
1469     /// Simple patterns:
1470     ///
1471     /// ```
1472     /// let v: Vec<&str> = "Mary had a little lamb".rsplitn(3, ' ').collect();
1473     /// assert_eq!(v, ["lamb", "little", "Mary had a"]);
1474     ///
1475     /// let v: Vec<&str> = "lionXXtigerXleopard".rsplitn(3, 'X').collect();
1476     /// assert_eq!(v, ["leopard", "tiger", "lionX"]);
1477     ///
1478     /// let v: Vec<&str> = "lion::tiger::leopard".rsplitn(2, "::").collect();
1479     /// assert_eq!(v, ["leopard", "lion::tiger"]);
1480     /// ```
1481     ///
1482     /// A more complex pattern, using a closure:
1483     ///
1484     /// ```
1485     /// let v: Vec<&str> = "abc1defXghi".rsplitn(2, |c| c == '1' || c == 'X').collect();
1486     /// assert_eq!(v, ["ghi", "abc1def"]);
1487     /// ```
1488     #[stable(feature = "rust1", since = "1.0.0")]
1489     #[inline]
1490     pub fn rsplitn<'a, P>(&'a self, n: usize, pat: P) -> RSplitN<'a, P>
1491     where
1492         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
1493     {
1494         RSplitN(self.splitn(n, pat).0)
1495     }
1496
1497     /// Splits the string on the first occurrence of the specified delimiter and
1498     /// returns prefix before delimiter and suffix after delimiter.
1499     ///
1500     /// # Examples
1501     ///
1502     /// ```
1503     /// #![feature(str_split_once)]
1504     ///
1505     /// assert_eq!("cfg".split_once('='), None);
1506     /// assert_eq!("cfg=foo".split_once('='), Some(("cfg", "foo")));
1507     /// assert_eq!("cfg=foo=bar".split_once('='), Some(("cfg", "foo=bar")));
1508     /// ```
1509     #[unstable(feature = "str_split_once", reason = "newly added", issue = "74773")]
1510     #[inline]
1511     pub fn split_once<'a, P: Pattern<'a>>(&'a self, delimiter: P) -> Option<(&'a str, &'a str)> {
1512         let (start, end) = delimiter.into_searcher(self).next_match()?;
1513         Some((&self[..start], &self[end..]))
1514     }
1515
1516     /// Splits the string on the last occurrence of the specified delimiter and
1517     /// returns prefix before delimiter and suffix after delimiter.
1518     ///
1519     /// # Examples
1520     ///
1521     /// ```
1522     /// #![feature(str_split_once)]
1523     ///
1524     /// assert_eq!("cfg".rsplit_once('='), None);
1525     /// assert_eq!("cfg=foo".rsplit_once('='), Some(("cfg", "foo")));
1526     /// assert_eq!("cfg=foo=bar".rsplit_once('='), Some(("cfg=foo", "bar")));
1527     /// ```
1528     #[unstable(feature = "str_split_once", reason = "newly added", issue = "74773")]
1529     #[inline]
1530     pub fn rsplit_once<'a, P>(&'a self, delimiter: P) -> Option<(&'a str, &'a str)>
1531     where
1532         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
1533     {
1534         let (start, end) = delimiter.into_searcher(self).next_match_back()?;
1535         Some((&self[..start], &self[end..]))
1536     }
1537
1538     /// An iterator over the disjoint matches of a pattern within the given string
1539     /// slice.
1540     ///
1541     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1542     /// function or closure that determines if a character matches.
1543     ///
1544     /// [`char`]: prim@char
1545     /// [pattern]: self::pattern
1546     ///
1547     /// # Iterator behavior
1548     ///
1549     /// The returned iterator will be a [`DoubleEndedIterator`] if the pattern
1550     /// allows a reverse search and forward/reverse search yields the same
1551     /// elements. This is true for, e.g., [`char`], but not for `&str`.
1552     ///
1553     /// If the pattern allows a reverse search but its results might differ
1554     /// from a forward search, the [`rmatches`] method can be used.
1555     ///
1556     /// [`rmatches`]: str::matches
1557     ///
1558     /// # Examples
1559     ///
1560     /// Basic usage:
1561     ///
1562     /// ```
1563     /// let v: Vec<&str> = "abcXXXabcYYYabc".matches("abc").collect();
1564     /// assert_eq!(v, ["abc", "abc", "abc"]);
1565     ///
1566     /// let v: Vec<&str> = "1abc2abc3".matches(char::is_numeric).collect();
1567     /// assert_eq!(v, ["1", "2", "3"]);
1568     /// ```
1569     #[stable(feature = "str_matches", since = "1.2.0")]
1570     #[inline]
1571     pub fn matches<'a, P: Pattern<'a>>(&'a self, pat: P) -> Matches<'a, P> {
1572         Matches(MatchesInternal(pat.into_searcher(self)))
1573     }
1574
1575     /// An iterator over the disjoint matches of a pattern within this string slice,
1576     /// yielded in reverse order.
1577     ///
1578     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1579     /// function or closure that determines if a character matches.
1580     ///
1581     /// [`char`]: prim@char
1582     /// [pattern]: self::pattern
1583     ///
1584     /// # Iterator behavior
1585     ///
1586     /// The returned iterator requires that the pattern supports a reverse
1587     /// search, and it will be a [`DoubleEndedIterator`] if a forward/reverse
1588     /// search yields the same elements.
1589     ///
1590     /// For iterating from the front, the [`matches`] method can be used.
1591     ///
1592     /// [`matches`]: str::matches
1593     ///
1594     /// # Examples
1595     ///
1596     /// Basic usage:
1597     ///
1598     /// ```
1599     /// let v: Vec<&str> = "abcXXXabcYYYabc".rmatches("abc").collect();
1600     /// assert_eq!(v, ["abc", "abc", "abc"]);
1601     ///
1602     /// let v: Vec<&str> = "1abc2abc3".rmatches(char::is_numeric).collect();
1603     /// assert_eq!(v, ["3", "2", "1"]);
1604     /// ```
1605     #[stable(feature = "str_matches", since = "1.2.0")]
1606     #[inline]
1607     pub fn rmatches<'a, P>(&'a self, pat: P) -> RMatches<'a, P>
1608     where
1609         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
1610     {
1611         RMatches(self.matches(pat).0)
1612     }
1613
1614     /// An iterator over the disjoint matches of a pattern within this string
1615     /// slice as well as the index that the match starts at.
1616     ///
1617     /// For matches of `pat` within `self` that overlap, only the indices
1618     /// corresponding to the first match are returned.
1619     ///
1620     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1621     /// function or closure that determines if a character matches.
1622     ///
1623     /// [`char`]: prim@char
1624     /// [pattern]: self::pattern
1625     ///
1626     /// # Iterator behavior
1627     ///
1628     /// The returned iterator will be a [`DoubleEndedIterator`] if the pattern
1629     /// allows a reverse search and forward/reverse search yields the same
1630     /// elements. This is true for, e.g., [`char`], but not for `&str`.
1631     ///
1632     /// If the pattern allows a reverse search but its results might differ
1633     /// from a forward search, the [`rmatch_indices`] method can be used.
1634     ///
1635     /// [`rmatch_indices`]: str::match_indices
1636     ///
1637     /// # Examples
1638     ///
1639     /// Basic usage:
1640     ///
1641     /// ```
1642     /// let v: Vec<_> = "abcXXXabcYYYabc".match_indices("abc").collect();
1643     /// assert_eq!(v, [(0, "abc"), (6, "abc"), (12, "abc")]);
1644     ///
1645     /// let v: Vec<_> = "1abcabc2".match_indices("abc").collect();
1646     /// assert_eq!(v, [(1, "abc"), (4, "abc")]);
1647     ///
1648     /// let v: Vec<_> = "ababa".match_indices("aba").collect();
1649     /// assert_eq!(v, [(0, "aba")]); // only the first `aba`
1650     /// ```
1651     #[stable(feature = "str_match_indices", since = "1.5.0")]
1652     #[inline]
1653     pub fn match_indices<'a, P: Pattern<'a>>(&'a self, pat: P) -> MatchIndices<'a, P> {
1654         MatchIndices(MatchIndicesInternal(pat.into_searcher(self)))
1655     }
1656
1657     /// An iterator over the disjoint matches of a pattern within `self`,
1658     /// yielded in reverse order along with the index of the match.
1659     ///
1660     /// For matches of `pat` within `self` that overlap, only the indices
1661     /// corresponding to the last match are returned.
1662     ///
1663     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1664     /// function or closure that determines if a character matches.
1665     ///
1666     /// [`char`]: prim@char
1667     /// [pattern]: self::pattern
1668     ///
1669     /// # Iterator behavior
1670     ///
1671     /// The returned iterator requires that the pattern supports a reverse
1672     /// search, and it will be a [`DoubleEndedIterator`] if a forward/reverse
1673     /// search yields the same elements.
1674     ///
1675     /// For iterating from the front, the [`match_indices`] method can be used.
1676     ///
1677     /// [`match_indices`]: str::match_indices
1678     ///
1679     /// # Examples
1680     ///
1681     /// Basic usage:
1682     ///
1683     /// ```
1684     /// let v: Vec<_> = "abcXXXabcYYYabc".rmatch_indices("abc").collect();
1685     /// assert_eq!(v, [(12, "abc"), (6, "abc"), (0, "abc")]);
1686     ///
1687     /// let v: Vec<_> = "1abcabc2".rmatch_indices("abc").collect();
1688     /// assert_eq!(v, [(4, "abc"), (1, "abc")]);
1689     ///
1690     /// let v: Vec<_> = "ababa".rmatch_indices("aba").collect();
1691     /// assert_eq!(v, [(2, "aba")]); // only the last `aba`
1692     /// ```
1693     #[stable(feature = "str_match_indices", since = "1.5.0")]
1694     #[inline]
1695     pub fn rmatch_indices<'a, P>(&'a self, pat: P) -> RMatchIndices<'a, P>
1696     where
1697         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
1698     {
1699         RMatchIndices(self.match_indices(pat).0)
1700     }
1701
1702     /// Returns a string slice with leading and trailing whitespace removed.
1703     ///
1704     /// 'Whitespace' is defined according to the terms of the Unicode Derived
1705     /// Core Property `White_Space`.
1706     ///
1707     /// # Examples
1708     ///
1709     /// Basic usage:
1710     ///
1711     /// ```
1712     /// let s = " Hello\tworld\t";
1713     ///
1714     /// assert_eq!("Hello\tworld", s.trim());
1715     /// ```
1716     #[inline]
1717     #[must_use = "this returns the trimmed string as a slice, \
1718                   without modifying the original"]
1719     #[stable(feature = "rust1", since = "1.0.0")]
1720     pub fn trim(&self) -> &str {
1721         self.trim_matches(|c: char| c.is_whitespace())
1722     }
1723
1724     /// Returns a string slice with leading whitespace removed.
1725     ///
1726     /// 'Whitespace' is defined according to the terms of the Unicode Derived
1727     /// Core Property `White_Space`.
1728     ///
1729     /// # Text directionality
1730     ///
1731     /// A string is a sequence of bytes. `start` in this context means the first
1732     /// position of that byte string; for a left-to-right language like English or
1733     /// Russian, this will be left side, and for right-to-left languages like
1734     /// Arabic or Hebrew, this will be the right side.
1735     ///
1736     /// # Examples
1737     ///
1738     /// Basic usage:
1739     ///
1740     /// ```
1741     /// let s = " Hello\tworld\t";
1742     /// assert_eq!("Hello\tworld\t", s.trim_start());
1743     /// ```
1744     ///
1745     /// Directionality:
1746     ///
1747     /// ```
1748     /// let s = "  English  ";
1749     /// assert!(Some('E') == s.trim_start().chars().next());
1750     ///
1751     /// let s = "  עברית  ";
1752     /// assert!(Some('ע') == s.trim_start().chars().next());
1753     /// ```
1754     #[inline]
1755     #[must_use = "this returns the trimmed string as a new slice, \
1756                   without modifying the original"]
1757     #[stable(feature = "trim_direction", since = "1.30.0")]
1758     pub fn trim_start(&self) -> &str {
1759         self.trim_start_matches(|c: char| c.is_whitespace())
1760     }
1761
1762     /// Returns a string slice with trailing whitespace removed.
1763     ///
1764     /// 'Whitespace' is defined according to the terms of the Unicode Derived
1765     /// Core Property `White_Space`.
1766     ///
1767     /// # Text directionality
1768     ///
1769     /// A string is a sequence of bytes. `end` in this context means the last
1770     /// position of that byte string; for a left-to-right language like English or
1771     /// Russian, this will be right side, and for right-to-left languages like
1772     /// Arabic or Hebrew, this will be the left side.
1773     ///
1774     /// # Examples
1775     ///
1776     /// Basic usage:
1777     ///
1778     /// ```
1779     /// let s = " Hello\tworld\t";
1780     /// assert_eq!(" Hello\tworld", s.trim_end());
1781     /// ```
1782     ///
1783     /// Directionality:
1784     ///
1785     /// ```
1786     /// let s = "  English  ";
1787     /// assert!(Some('h') == s.trim_end().chars().rev().next());
1788     ///
1789     /// let s = "  עברית  ";
1790     /// assert!(Some('ת') == s.trim_end().chars().rev().next());
1791     /// ```
1792     #[inline]
1793     #[must_use = "this returns the trimmed string as a new slice, \
1794                   without modifying the original"]
1795     #[stable(feature = "trim_direction", since = "1.30.0")]
1796     pub fn trim_end(&self) -> &str {
1797         self.trim_end_matches(|c: char| c.is_whitespace())
1798     }
1799
1800     /// Returns a string slice with leading whitespace removed.
1801     ///
1802     /// 'Whitespace' is defined according to the terms of the Unicode Derived
1803     /// Core Property `White_Space`.
1804     ///
1805     /// # Text directionality
1806     ///
1807     /// A string is a sequence of bytes. 'Left' in this context means the first
1808     /// position of that byte string; for a language like Arabic or Hebrew
1809     /// which are 'right to left' rather than 'left to right', this will be
1810     /// the _right_ side, not the left.
1811     ///
1812     /// # Examples
1813     ///
1814     /// Basic usage:
1815     ///
1816     /// ```
1817     /// let s = " Hello\tworld\t";
1818     ///
1819     /// assert_eq!("Hello\tworld\t", s.trim_left());
1820     /// ```
1821     ///
1822     /// Directionality:
1823     ///
1824     /// ```
1825     /// let s = "  English";
1826     /// assert!(Some('E') == s.trim_left().chars().next());
1827     ///
1828     /// let s = "  עברית";
1829     /// assert!(Some('ע') == s.trim_left().chars().next());
1830     /// ```
1831     #[inline]
1832     #[stable(feature = "rust1", since = "1.0.0")]
1833     #[rustc_deprecated(
1834         since = "1.33.0",
1835         reason = "superseded by `trim_start`",
1836         suggestion = "trim_start"
1837     )]
1838     pub fn trim_left(&self) -> &str {
1839         self.trim_start()
1840     }
1841
1842     /// Returns a string slice with trailing whitespace removed.
1843     ///
1844     /// 'Whitespace' is defined according to the terms of the Unicode Derived
1845     /// Core Property `White_Space`.
1846     ///
1847     /// # Text directionality
1848     ///
1849     /// A string is a sequence of bytes. 'Right' in this context means the last
1850     /// position of that byte string; for a language like Arabic or Hebrew
1851     /// which are 'right to left' rather than 'left to right', this will be
1852     /// the _left_ side, not the right.
1853     ///
1854     /// # Examples
1855     ///
1856     /// Basic usage:
1857     ///
1858     /// ```
1859     /// let s = " Hello\tworld\t";
1860     ///
1861     /// assert_eq!(" Hello\tworld", s.trim_right());
1862     /// ```
1863     ///
1864     /// Directionality:
1865     ///
1866     /// ```
1867     /// let s = "English  ";
1868     /// assert!(Some('h') == s.trim_right().chars().rev().next());
1869     ///
1870     /// let s = "עברית  ";
1871     /// assert!(Some('ת') == s.trim_right().chars().rev().next());
1872     /// ```
1873     #[inline]
1874     #[stable(feature = "rust1", since = "1.0.0")]
1875     #[rustc_deprecated(
1876         since = "1.33.0",
1877         reason = "superseded by `trim_end`",
1878         suggestion = "trim_end"
1879     )]
1880     pub fn trim_right(&self) -> &str {
1881         self.trim_end()
1882     }
1883
1884     /// Returns a string slice with all prefixes and suffixes that match a
1885     /// pattern repeatedly removed.
1886     ///
1887     /// The [pattern] can be a [`char`], a slice of [`char`]s, or a function
1888     /// or closure that determines if a character matches.
1889     ///
1890     /// [`char`]: prim@char
1891     /// [pattern]: self::pattern
1892     ///
1893     /// # Examples
1894     ///
1895     /// Simple patterns:
1896     ///
1897     /// ```
1898     /// assert_eq!("11foo1bar11".trim_matches('1'), "foo1bar");
1899     /// assert_eq!("123foo1bar123".trim_matches(char::is_numeric), "foo1bar");
1900     ///
1901     /// let x: &[_] = &['1', '2'];
1902     /// assert_eq!("12foo1bar12".trim_matches(x), "foo1bar");
1903     /// ```
1904     ///
1905     /// A more complex pattern, using a closure:
1906     ///
1907     /// ```
1908     /// assert_eq!("1foo1barXX".trim_matches(|c| c == '1' || c == 'X'), "foo1bar");
1909     /// ```
1910     #[must_use = "this returns the trimmed string as a new slice, \
1911                   without modifying the original"]
1912     #[stable(feature = "rust1", since = "1.0.0")]
1913     pub fn trim_matches<'a, P>(&'a self, pat: P) -> &'a str
1914     where
1915         P: Pattern<'a, Searcher: DoubleEndedSearcher<'a>>,
1916     {
1917         let mut i = 0;
1918         let mut j = 0;
1919         let mut matcher = pat.into_searcher(self);
1920         if let Some((a, b)) = matcher.next_reject() {
1921             i = a;
1922             j = b; // Remember earliest known match, correct it below if
1923             // last match is different
1924         }
1925         if let Some((_, b)) = matcher.next_reject_back() {
1926             j = b;
1927         }
1928         // SAFETY: `Searcher` is known to return valid indices.
1929         unsafe { self.get_unchecked(i..j) }
1930     }
1931
1932     /// Returns a string slice with all prefixes that match a pattern
1933     /// repeatedly removed.
1934     ///
1935     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1936     /// function or closure that determines if a character matches.
1937     ///
1938     /// [`char`]: prim@char
1939     /// [pattern]: self::pattern
1940     ///
1941     /// # Text directionality
1942     ///
1943     /// A string is a sequence of bytes. `start` in this context means the first
1944     /// position of that byte string; for a left-to-right language like English or
1945     /// Russian, this will be left side, and for right-to-left languages like
1946     /// Arabic or Hebrew, this will be the right side.
1947     ///
1948     /// # Examples
1949     ///
1950     /// Basic usage:
1951     ///
1952     /// ```
1953     /// assert_eq!("11foo1bar11".trim_start_matches('1'), "foo1bar11");
1954     /// assert_eq!("123foo1bar123".trim_start_matches(char::is_numeric), "foo1bar123");
1955     ///
1956     /// let x: &[_] = &['1', '2'];
1957     /// assert_eq!("12foo1bar12".trim_start_matches(x), "foo1bar12");
1958     /// ```
1959     #[must_use = "this returns the trimmed string as a new slice, \
1960                   without modifying the original"]
1961     #[stable(feature = "trim_direction", since = "1.30.0")]
1962     pub fn trim_start_matches<'a, P: Pattern<'a>>(&'a self, pat: P) -> &'a str {
1963         let mut i = self.len();
1964         let mut matcher = pat.into_searcher(self);
1965         if let Some((a, _)) = matcher.next_reject() {
1966             i = a;
1967         }
1968         // SAFETY: `Searcher` is known to return valid indices.
1969         unsafe { self.get_unchecked(i..self.len()) }
1970     }
1971
1972     /// Returns a string slice with the prefix removed.
1973     ///
1974     /// If the string starts with the pattern `prefix`, returns substring after the prefix, wrapped
1975     /// in `Some`.  Unlike `trim_start_matches`, this method removes the prefix exactly once.
1976     ///
1977     /// If the string does not start with `prefix`, returns `None`.
1978     ///
1979     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
1980     /// function or closure that determines if a character matches.
1981     ///
1982     /// [`char`]: prim@char
1983     /// [pattern]: self::pattern
1984     ///
1985     /// # Examples
1986     ///
1987     /// ```
1988     /// assert_eq!("foo:bar".strip_prefix("foo:"), Some("bar"));
1989     /// assert_eq!("foo:bar".strip_prefix("bar"), None);
1990     /// assert_eq!("foofoo".strip_prefix("foo"), Some("foo"));
1991     /// ```
1992     #[must_use = "this returns the remaining substring as a new slice, \
1993                   without modifying the original"]
1994     #[stable(feature = "str_strip", since = "1.45.0")]
1995     pub fn strip_prefix<'a, P: Pattern<'a>>(&'a self, prefix: P) -> Option<&'a str> {
1996         prefix.strip_prefix_of(self)
1997     }
1998
1999     /// Returns a string slice with the suffix removed.
2000     ///
2001     /// If the string ends with the pattern `suffix`, returns the substring before the suffix,
2002     /// wrapped in `Some`.  Unlike `trim_end_matches`, this method removes the suffix exactly once.
2003     ///
2004     /// If the string does not end with `suffix`, returns `None`.
2005     ///
2006     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
2007     /// function or closure that determines if a character matches.
2008     ///
2009     /// [`char`]: prim@char
2010     /// [pattern]: self::pattern
2011     ///
2012     /// # Examples
2013     ///
2014     /// ```
2015     /// assert_eq!("bar:foo".strip_suffix(":foo"), Some("bar"));
2016     /// assert_eq!("bar:foo".strip_suffix("bar"), None);
2017     /// assert_eq!("foofoo".strip_suffix("foo"), Some("foo"));
2018     /// ```
2019     #[must_use = "this returns the remaining substring as a new slice, \
2020                   without modifying the original"]
2021     #[stable(feature = "str_strip", since = "1.45.0")]
2022     pub fn strip_suffix<'a, P>(&'a self, suffix: P) -> Option<&'a str>
2023     where
2024         P: Pattern<'a>,
2025         <P as Pattern<'a>>::Searcher: ReverseSearcher<'a>,
2026     {
2027         suffix.strip_suffix_of(self)
2028     }
2029
2030     /// Returns a string slice with all suffixes that match a pattern
2031     /// repeatedly removed.
2032     ///
2033     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
2034     /// function or closure that determines if a character matches.
2035     ///
2036     /// [`char`]: prim@char
2037     /// [pattern]: self::pattern
2038     ///
2039     /// # Text directionality
2040     ///
2041     /// A string is a sequence of bytes. `end` in this context means the last
2042     /// position of that byte string; for a left-to-right language like English or
2043     /// Russian, this will be right side, and for right-to-left languages like
2044     /// Arabic or Hebrew, this will be the left side.
2045     ///
2046     /// # Examples
2047     ///
2048     /// Simple patterns:
2049     ///
2050     /// ```
2051     /// assert_eq!("11foo1bar11".trim_end_matches('1'), "11foo1bar");
2052     /// assert_eq!("123foo1bar123".trim_end_matches(char::is_numeric), "123foo1bar");
2053     ///
2054     /// let x: &[_] = &['1', '2'];
2055     /// assert_eq!("12foo1bar12".trim_end_matches(x), "12foo1bar");
2056     /// ```
2057     ///
2058     /// A more complex pattern, using a closure:
2059     ///
2060     /// ```
2061     /// assert_eq!("1fooX".trim_end_matches(|c| c == '1' || c == 'X'), "1foo");
2062     /// ```
2063     #[must_use = "this returns the trimmed string as a new slice, \
2064                   without modifying the original"]
2065     #[stable(feature = "trim_direction", since = "1.30.0")]
2066     pub fn trim_end_matches<'a, P>(&'a self, pat: P) -> &'a str
2067     where
2068         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
2069     {
2070         let mut j = 0;
2071         let mut matcher = pat.into_searcher(self);
2072         if let Some((_, b)) = matcher.next_reject_back() {
2073             j = b;
2074         }
2075         // SAFETY: `Searcher` is known to return valid indices.
2076         unsafe { self.get_unchecked(0..j) }
2077     }
2078
2079     /// Returns a string slice with all prefixes that match a pattern
2080     /// repeatedly removed.
2081     ///
2082     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
2083     /// function or closure that determines if a character matches.
2084     ///
2085     /// [`char`]: prim@char
2086     /// [pattern]: self::pattern
2087     ///
2088     /// # Text directionality
2089     ///
2090     /// A string is a sequence of bytes. 'Left' in this context means the first
2091     /// position of that byte string; for a language like Arabic or Hebrew
2092     /// which are 'right to left' rather than 'left to right', this will be
2093     /// the _right_ side, not the left.
2094     ///
2095     /// # Examples
2096     ///
2097     /// Basic usage:
2098     ///
2099     /// ```
2100     /// assert_eq!("11foo1bar11".trim_left_matches('1'), "foo1bar11");
2101     /// assert_eq!("123foo1bar123".trim_left_matches(char::is_numeric), "foo1bar123");
2102     ///
2103     /// let x: &[_] = &['1', '2'];
2104     /// assert_eq!("12foo1bar12".trim_left_matches(x), "foo1bar12");
2105     /// ```
2106     #[stable(feature = "rust1", since = "1.0.0")]
2107     #[rustc_deprecated(
2108         since = "1.33.0",
2109         reason = "superseded by `trim_start_matches`",
2110         suggestion = "trim_start_matches"
2111     )]
2112     pub fn trim_left_matches<'a, P: Pattern<'a>>(&'a self, pat: P) -> &'a str {
2113         self.trim_start_matches(pat)
2114     }
2115
2116     /// Returns a string slice with all suffixes that match a pattern
2117     /// repeatedly removed.
2118     ///
2119     /// The [pattern] can be a `&str`, [`char`], a slice of [`char`]s, or a
2120     /// function or closure that determines if a character matches.
2121     ///
2122     /// [`char`]: prim@char
2123     /// [pattern]: self::pattern
2124     ///
2125     /// # Text directionality
2126     ///
2127     /// A string is a sequence of bytes. 'Right' in this context means the last
2128     /// position of that byte string; for a language like Arabic or Hebrew
2129     /// which are 'right to left' rather than 'left to right', this will be
2130     /// the _left_ side, not the right.
2131     ///
2132     /// # Examples
2133     ///
2134     /// Simple patterns:
2135     ///
2136     /// ```
2137     /// assert_eq!("11foo1bar11".trim_right_matches('1'), "11foo1bar");
2138     /// assert_eq!("123foo1bar123".trim_right_matches(char::is_numeric), "123foo1bar");
2139     ///
2140     /// let x: &[_] = &['1', '2'];
2141     /// assert_eq!("12foo1bar12".trim_right_matches(x), "12foo1bar");
2142     /// ```
2143     ///
2144     /// A more complex pattern, using a closure:
2145     ///
2146     /// ```
2147     /// assert_eq!("1fooX".trim_right_matches(|c| c == '1' || c == 'X'), "1foo");
2148     /// ```
2149     #[stable(feature = "rust1", since = "1.0.0")]
2150     #[rustc_deprecated(
2151         since = "1.33.0",
2152         reason = "superseded by `trim_end_matches`",
2153         suggestion = "trim_end_matches"
2154     )]
2155     pub fn trim_right_matches<'a, P>(&'a self, pat: P) -> &'a str
2156     where
2157         P: Pattern<'a, Searcher: ReverseSearcher<'a>>,
2158     {
2159         self.trim_end_matches(pat)
2160     }
2161
2162     /// Parses this string slice into another type.
2163     ///
2164     /// Because `parse` is so general, it can cause problems with type
2165     /// inference. As such, `parse` is one of the few times you'll see
2166     /// the syntax affectionately known as the 'turbofish': `::<>`. This
2167     /// helps the inference algorithm understand specifically which type
2168     /// you're trying to parse into.
2169     ///
2170     /// `parse` can parse any type that implements the [`FromStr`] trait.
2171
2172     ///
2173     /// # Errors
2174     ///
2175     /// Will return [`Err`] if it's not possible to parse this string slice into
2176     /// the desired type.
2177     ///
2178     /// [`Err`]: FromStr::Err
2179     ///
2180     /// # Examples
2181     ///
2182     /// Basic usage
2183     ///
2184     /// ```
2185     /// let four: u32 = "4".parse().unwrap();
2186     ///
2187     /// assert_eq!(4, four);
2188     /// ```
2189     ///
2190     /// Using the 'turbofish' instead of annotating `four`:
2191     ///
2192     /// ```
2193     /// let four = "4".parse::<u32>();
2194     ///
2195     /// assert_eq!(Ok(4), four);
2196     /// ```
2197     ///
2198     /// Failing to parse:
2199     ///
2200     /// ```
2201     /// let nope = "j".parse::<u32>();
2202     ///
2203     /// assert!(nope.is_err());
2204     /// ```
2205     #[inline]
2206     #[stable(feature = "rust1", since = "1.0.0")]
2207     pub fn parse<F: FromStr>(&self) -> Result<F, F::Err> {
2208         FromStr::from_str(self)
2209     }
2210
2211     /// Checks if all characters in this string are within the ASCII range.
2212     ///
2213     /// # Examples
2214     ///
2215     /// ```
2216     /// let ascii = "hello!\n";
2217     /// let non_ascii = "Grüße, Jürgen ❤";
2218     ///
2219     /// assert!(ascii.is_ascii());
2220     /// assert!(!non_ascii.is_ascii());
2221     /// ```
2222     #[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
2223     #[inline]
2224     pub fn is_ascii(&self) -> bool {
2225         // We can treat each byte as character here: all multibyte characters
2226         // start with a byte that is not in the ascii range, so we will stop
2227         // there already.
2228         self.as_bytes().is_ascii()
2229     }
2230
2231     /// Checks that two strings are an ASCII case-insensitive match.
2232     ///
2233     /// Same as `to_ascii_lowercase(a) == to_ascii_lowercase(b)`,
2234     /// but without allocating and copying temporaries.
2235     ///
2236     /// # Examples
2237     ///
2238     /// ```
2239     /// assert!("Ferris".eq_ignore_ascii_case("FERRIS"));
2240     /// assert!("Ferrös".eq_ignore_ascii_case("FERRöS"));
2241     /// assert!(!"Ferrös".eq_ignore_ascii_case("FERRÖS"));
2242     /// ```
2243     #[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
2244     #[inline]
2245     pub fn eq_ignore_ascii_case(&self, other: &str) -> bool {
2246         self.as_bytes().eq_ignore_ascii_case(other.as_bytes())
2247     }
2248
2249     /// Converts this string to its ASCII upper case equivalent in-place.
2250     ///
2251     /// ASCII letters 'a' to 'z' are mapped to 'A' to 'Z',
2252     /// but non-ASCII letters are unchanged.
2253     ///
2254     /// To return a new uppercased value without modifying the existing one, use
2255     /// [`to_ascii_uppercase`].
2256     ///
2257     /// [`to_ascii_uppercase`]: #method.to_ascii_uppercase
2258     ///
2259     /// # Examples
2260     ///
2261     /// ```
2262     /// let mut s = String::from("Grüße, Jürgen ❤");
2263     ///
2264     /// s.make_ascii_uppercase();
2265     ///
2266     /// assert_eq!("GRüßE, JüRGEN ❤", s);
2267     /// ```
2268     #[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
2269     #[inline]
2270     pub fn make_ascii_uppercase(&mut self) {
2271         // SAFETY: safe because we transmute two types with the same layout.
2272         let me = unsafe { self.as_bytes_mut() };
2273         me.make_ascii_uppercase()
2274     }
2275
2276     /// Converts this string to its ASCII lower case equivalent in-place.
2277     ///
2278     /// ASCII letters 'A' to 'Z' are mapped to 'a' to 'z',
2279     /// but non-ASCII letters are unchanged.
2280     ///
2281     /// To return a new lowercased value without modifying the existing one, use
2282     /// [`to_ascii_lowercase`].
2283     ///
2284     /// [`to_ascii_lowercase`]: #method.to_ascii_lowercase
2285     ///
2286     /// # Examples
2287     ///
2288     /// ```
2289     /// let mut s = String::from("GRÜßE, JÜRGEN ❤");
2290     ///
2291     /// s.make_ascii_lowercase();
2292     ///
2293     /// assert_eq!("grÜße, jÜrgen ❤", s);
2294     /// ```
2295     #[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")]
2296     #[inline]
2297     pub fn make_ascii_lowercase(&mut self) {
2298         // SAFETY: safe because we transmute two types with the same layout.
2299         let me = unsafe { self.as_bytes_mut() };
2300         me.make_ascii_lowercase()
2301     }
2302
2303     /// Return an iterator that escapes each char in `self` with [`char::escape_debug`].
2304     ///
2305     /// Note: only extended grapheme codepoints that begin the string will be
2306     /// escaped.
2307     ///
2308     /// # Examples
2309     ///
2310     /// As an iterator:
2311     ///
2312     /// ```
2313     /// for c in "❤\n!".escape_debug() {
2314     ///     print!("{}", c);
2315     /// }
2316     /// println!();
2317     /// ```
2318     ///
2319     /// Using `println!` directly:
2320     ///
2321     /// ```
2322     /// println!("{}", "❤\n!".escape_debug());
2323     /// ```
2324     ///
2325     ///
2326     /// Both are equivalent to:
2327     ///
2328     /// ```
2329     /// println!("❤\\n!");
2330     /// ```
2331     ///
2332     /// Using `to_string`:
2333     ///
2334     /// ```
2335     /// assert_eq!("❤\n!".escape_debug().to_string(), "❤\\n!");
2336     /// ```
2337     #[stable(feature = "str_escape", since = "1.34.0")]
2338     pub fn escape_debug(&self) -> EscapeDebug<'_> {
2339         let mut chars = self.chars();
2340         EscapeDebug {
2341             inner: chars
2342                 .next()
2343                 .map(|first| first.escape_debug_ext(true))
2344                 .into_iter()
2345                 .flatten()
2346                 .chain(chars.flat_map(CharEscapeDebugContinue)),
2347         }
2348     }
2349
2350     /// Return an iterator that escapes each char in `self` with [`char::escape_default`].
2351     ///
2352     /// # Examples
2353     ///
2354     /// As an iterator:
2355     ///
2356     /// ```
2357     /// for c in "❤\n!".escape_default() {
2358     ///     print!("{}", c);
2359     /// }
2360     /// println!();
2361     /// ```
2362     ///
2363     /// Using `println!` directly:
2364     ///
2365     /// ```
2366     /// println!("{}", "❤\n!".escape_default());
2367     /// ```
2368     ///
2369     ///
2370     /// Both are equivalent to:
2371     ///
2372     /// ```
2373     /// println!("\\u{{2764}}\\n!");
2374     /// ```
2375     ///
2376     /// Using `to_string`:
2377     ///
2378     /// ```
2379     /// assert_eq!("❤\n!".escape_default().to_string(), "\\u{2764}\\n!");
2380     /// ```
2381     #[stable(feature = "str_escape", since = "1.34.0")]
2382     pub fn escape_default(&self) -> EscapeDefault<'_> {
2383         EscapeDefault { inner: self.chars().flat_map(CharEscapeDefault) }
2384     }
2385
2386     /// Return an iterator that escapes each char in `self` with [`char::escape_unicode`].
2387     ///
2388     /// # Examples
2389     ///
2390     /// As an iterator:
2391     ///
2392     /// ```
2393     /// for c in "❤\n!".escape_unicode() {
2394     ///     print!("{}", c);
2395     /// }
2396     /// println!();
2397     /// ```
2398     ///
2399     /// Using `println!` directly:
2400     ///
2401     /// ```
2402     /// println!("{}", "❤\n!".escape_unicode());
2403     /// ```
2404     ///
2405     ///
2406     /// Both are equivalent to:
2407     ///
2408     /// ```
2409     /// println!("\\u{{2764}}\\u{{a}}\\u{{21}}");
2410     /// ```
2411     ///
2412     /// Using `to_string`:
2413     ///
2414     /// ```
2415     /// assert_eq!("❤\n!".escape_unicode().to_string(), "\\u{2764}\\u{a}\\u{21}");
2416     /// ```
2417     #[stable(feature = "str_escape", since = "1.34.0")]
2418     pub fn escape_unicode(&self) -> EscapeUnicode<'_> {
2419         EscapeUnicode { inner: self.chars().flat_map(CharEscapeUnicode) }
2420     }
2421 }
2422
2423 #[stable(feature = "rust1", since = "1.0.0")]
2424 impl AsRef<[u8]> for str {
2425     #[inline]
2426     fn as_ref(&self) -> &[u8] {
2427         self.as_bytes()
2428     }
2429 }
2430
2431 #[stable(feature = "rust1", since = "1.0.0")]
2432 impl Default for &str {
2433     /// Creates an empty str
2434     #[inline]
2435     fn default() -> Self {
2436         ""
2437     }
2438 }
2439
2440 #[stable(feature = "default_mut_str", since = "1.28.0")]
2441 impl Default for &mut str {
2442     /// Creates an empty mutable str
2443     #[inline]
2444     fn default() -> Self {
2445         // SAFETY: The empty string is valid UTF-8.
2446         unsafe { from_utf8_unchecked_mut(&mut []) }
2447     }
2448 }
2449
2450 impl_fn_for_zst! {
2451     /// A nameable, cloneable fn type
2452     #[derive(Clone)]
2453     struct LinesAnyMap impl<'a> Fn = |line: &'a str| -> &'a str {
2454         let l = line.len();
2455         if l > 0 && line.as_bytes()[l - 1] == b'\r' { &line[0 .. l - 1] }
2456         else { line }
2457     };
2458
2459     #[derive(Clone)]
2460     struct CharEscapeDebugContinue impl Fn = |c: char| -> char::EscapeDebug {
2461         c.escape_debug_ext(false)
2462     };
2463
2464     #[derive(Clone)]
2465     struct CharEscapeUnicode impl Fn = |c: char| -> char::EscapeUnicode {
2466         c.escape_unicode()
2467     };
2468     #[derive(Clone)]
2469     struct CharEscapeDefault impl Fn = |c: char| -> char::EscapeDefault {
2470         c.escape_default()
2471     };
2472
2473     #[derive(Clone)]
2474     struct IsWhitespace impl Fn = |c: char| -> bool {
2475         c.is_whitespace()
2476     };
2477
2478     #[derive(Clone)]
2479     struct IsAsciiWhitespace impl Fn = |byte: &u8| -> bool {
2480         byte.is_ascii_whitespace()
2481     };
2482
2483     #[derive(Clone)]
2484     struct IsNotEmpty impl<'a, 'b> Fn = |s: &'a &'b str| -> bool {
2485         !s.is_empty()
2486     };
2487
2488     #[derive(Clone)]
2489     struct BytesIsNotEmpty impl<'a, 'b> Fn = |s: &'a &'b [u8]| -> bool {
2490         !s.is_empty()
2491     };
2492
2493     #[derive(Clone)]
2494     struct UnsafeBytesToStr impl<'a> Fn = |bytes: &'a [u8]| -> &'a str {
2495         // SAFETY: not safe
2496         unsafe { from_utf8_unchecked(bytes) }
2497     };
2498 }