Documentation

Init.Data.String.Basic

Strings #

This file builds on the UTF-8 verification in Init.Data.String.Decode and the preliminary material in Init.Data.String.Defs to get the theory of strings off the ground. In particular, in this file we construct the decoding function String.data : StringList Char and show that it is a two-sided inverse to List.asString : List CharString. This in turn enables us to understand the validity predicate on positions in terms of lists of characters, which forms the basis for all further verification for strings.

@[inline]

Decodes a sequence of characters from their UTF-8 representation. Returns none if the bytes are not a sequence of Unicode scalar values.

Equations
Instances For
    def ByteArray.utf8Decode?.go (b : ByteArray) (fuel i : Nat) (acc : Array Char) (hi : i b.size) (hf : b.size - i < fuel) :
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For
      @[extern lean_string_validate_utf8]
      Equations
      Instances For
        def ByteArray.validateUTF8.go (b : ByteArray) (fuel i : Nat) (hi : i b.size) (hf : b.size - i < fuel) :
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          theorem ByteArray.isSome_utf8Decode?Go_eq_validateUTF8Go {b : ByteArray} {fuel i : Nat} {acc : Array Char} {hi : i b.size} {hf : b.size - i < fuel} :
          (utf8Decode?.go b fuel i acc hi hf).isSome = validateUTF8.go b fuel i hi hf
          theorem ByteArray.utf8Decode?.go.congr {b b' : ByteArray} {fuel fuel' i i' : Nat} {acc acc' : Array Char} {hi : i b.size} {hi' : i' b'.size} {hf : b.size - i < fuel} {hf' : b'.size - i' < fuel'} (hbb' : b = b') (hii' : i = i') (hacc : acc = acc') :
          go b fuel i acc hi hf = go b' fuel' i' acc' hi' hf'
          @[inline]

          Decodes an array of bytes that encode a string as UTF-8 into the corresponding string, or returns none if the array is not a valid UTF-8 encoding of a string.

          Equations
          Instances For
            @[inline]

            Decodes an array of bytes that encode a string as UTF-8 into the corresponding string, or panics if the array is not a valid UTF-8 encoding of a string.

            Equations
            Instances For
              @[simp]
              theorem String.empty_append {s : String} :
              "" ++ s = s
              @[simp]
              theorem String.append_empty {s : String} :
              s ++ "" = s
              @[simp]
              @[deprecated String.ofList_nil (since := "2025-10-30")]
              @[simp]
              theorem String.ofList_append {l₁ l₂ : List Char} :
              ofList (l₁ ++ l₂) = ofList l₁ ++ ofList l₂
              @[deprecated String.ofList_append (since := "2025-10-30")]
              theorem List.asString_append {l₁ l₂ : List Char} :
              @[extern lean_string_data]

              Converts a string to a list of characters.

              Since strings are represented as dynamic arrays of bytes containing the string encoded using UTF-8, this operation takes time and space linear in the length of the string.

              Examples:

              Equations
              Instances For
                @[extern lean_string_data, deprecated String.toList (since := "2025-10-30")]

                Converts a string to a list of characters.

                Since strings are represented as dynamic arrays of bytes containing the string encoded using UTF-8, this operation takes time and space linear in the length of the string.

                Examples:

                Equations
                Instances For
                  @[simp]
                  @[deprecated String.toList_empty (since := "2025-10-30")]
                  @[extern lean_string_length]

                  Returns the length of a string in Unicode code points.

                  Examples:

                  Equations
                  Instances For
                    @[deprecated String.length_toList (since := "2025-10-30")]
                    @[simp]
                    @[deprecated String.toList_ofList (since := "2025-10-30")]
                    @[simp]
                    @[deprecated String.ofList_toList (since := "2025-10-30")]
                    theorem String.ofList_injective {l₁ l₂ : List Char} (h : ofList l₁ = ofList l₂) :
                    l₁ = l₂
                    @[deprecated String.ofList_injective (since := "2025-10-30")]
                    theorem List.asString_injective {l₁ l₂ : List Char} (h : String.ofList l₁ = String.ofList l₂) :
                    l₁ = l₂
                    theorem String.ofList_inj {l₁ l₂ : List Char} :
                    ofList l₁ = ofList l₂ l₁ = l₂
                    @[deprecated String.ofList_inj (since := "2025-10-30")]
                    theorem List.asString_inj {l₁ l₂ : List Char} :
                    String.ofList l₁ = String.ofList l₂ l₁ = l₂
                    theorem String.toList_injective {s₁ s₂ : String} (h : s₁.toList = s₂.toList) :
                    s₁ = s₂
                    @[deprecated String.toList_injective (since := "2025-10-30")]
                    theorem String.data_injective {s₁ s₂ : String} (h : s₁.toList = s₂.toList) :
                    s₁ = s₂
                    theorem String.toList_inj {s₁ s₂ : String} :
                    s₁.toList = s₂.toList s₁ = s₂
                    @[deprecated String.toList_inj (since := "2025-10-30")]
                    theorem String.data_inj {s₁ s₂ : String} :
                    s₁.toList = s₂.toList s₁ = s₂
                    @[simp]
                    theorem String.toList_append {s t : String} :
                    @[deprecated String.toList_append (since := "2025-10-30")]
                    theorem String.data_append {l₁ l₂ : String} :
                    (l₁ ++ l₂).toList = l₁.toList ++ l₂.toList
                    @[deprecated String.utf8Encode_toList (since := "2025-10-30")]
                    @[simp]
                    @[deprecated String.toList_eq_nil_iff (since := "2025-10-30")]
                    theorem String.data_eq_nil_iff {b : String} :
                    b.toList = [] b = ""
                    @[simp]
                    @[deprecated String.ofList_eq_empty_iff (since := "2025-10-30")]
                    @[deprecated String.length_ofList (since := "2025-10-30")]
                    Equations
                    @[extern lean_string_dec_lt]
                    instance String.decidableLT (s₁ s₂ : String) :
                    Decidable (s₁ < s₂)
                    Equations
                    @[reducible]
                    def String.le (a b : String) :

                    Non-strict inequality on strings, typically used via the operator.

                    a ≤ b is defined to mean ¬ b < a.

                    Equations
                    Instances For
                      instance String.decLE (s₁ s₂ : String) :
                      Decidable (s₁ s₂)
                      Equations
                      theorem String.Pos.Raw.IsValid.exists {s : String} {p : Raw} (h : IsValid s p) :
                      (m₁ : List Char), (m₂ : List Char), m₁.utf8Encode = s.bytes.extract 0 p.byteIdx ofList (m₁ ++ m₂) = s
                      @[deprecated String.Pos.Raw.isValid_ofList (since := "2025-10-30")]
                      @[deprecated String.Pos.Raw.isValid_iff_exists_take_toList (since := "2025-10-30")]
                      theorem String.Pos.Raw.IsValid.append_left {t : String} {p : Raw} (h : IsValid t p) (s : String) :
                      IsValid (s ++ t) (s + p)
                      theorem String.Pos.Raw.IsValid.append_right {s : String} {p : Raw} (h : IsValid s p) (t : String) :
                      IsValid (s ++ t) p
                      theorem String.Pos.Raw.isValid_push {s : String} {c : Char} {p : Raw} :
                      IsValid (s.push c) p IsValid s p p = s.rawEndPos + c
                      @[simp]
                      theorem String.rawEndPos_push {s : String} {c : Char} :
                      @[deprecated String.rawEndPos_push (since := "2025-10-20")]
                      theorem String.endPos_push {s : String} {c : Char} :
                      theorem String.push_induction (s : String) (motive : StringProp) (empty : motive "") (push : ∀ (b : String) (c : Char), motive bmotive (b.push c)) :
                      motive s
                      @[extern lean_string_is_valid_pos]

                      Returns true if p is a valid UTF-8 position in the string s.

                      This means that p ≤ s.rawEndPos and p lies on a UTF-8 character boundary. At runtime, this operation takes constant time.

                      Examples:

                      • String.Pos.isValid "abc" ⟨0⟩ = true
                      • String.Pos.isValid "abc" ⟨1⟩ = true
                      • String.Pos.isValid "abc" ⟨3⟩ = true
                      • String.Pos.isValid "abc" ⟨4⟩ = false
                      • String.Pos.isValid "𝒫(A)" ⟨0⟩ = true
                      • String.Pos.isValid "𝒫(A)" ⟨1⟩ = false
                      • String.Pos.isValid "𝒫(A)" ⟨2⟩ = false
                      • String.Pos.isValid "𝒫(A)" ⟨3⟩ = false
                      • String.Pos.isValid "𝒫(A)" ⟨4⟩ = true
                      Equations
                      Instances For
                        theorem String.Pos.Raw.isValidUTF8_extract_iff {s : String} (p₁ p₂ : Raw) (hle : p₁ p₂) (hle' : p₂ s.rawEndPos) :
                        (s.bytes.extract p₁.byteIdx p₂.byteIdx).IsValidUTF8 p₁ = p₂ IsValid s p₁ IsValid s p₂
                        @[extern lean_string_utf8_extract]
                        Equations
                        Instances For
                          @[inline]

                          Creates a String from a String.Slice by copying the bytes.

                          Equations
                          Instances For
                            @[simp]

                            Efficiently checks whether a position is at a UTF-8 character boundary of the slice s.

                            Equations
                            Instances For
                              @[inline]
                              def String.Slice.Pos.str {s : Slice} (pos : s.Pos) :

                              Given a valid position on a slice s, obtains the corresponding valid position on the underlying string s.str.

                              Equations
                              Instances For
                                @[inline]

                                Given a slice and a valid position within the slice, obtain a new slice on the same underlying string by replacing the start of the slice with the given position.

                                Equations
                                Instances For
                                  @[simp]
                                  theorem String.Slice.str_replaceStart {s : Slice} {pos : s.Pos} :
                                  (s.replaceStart pos).str = s.str
                                  @[inline]
                                  def String.Slice.replaceEnd (s : Slice) (pos : s.Pos) :

                                  Given a slice and a valid position within the slice, obtain a new slice on the same underlying string by replacing the end of the slice with the given position.

                                  Equations
                                  Instances For
                                    @[simp]
                                    theorem String.Slice.str_replaceEnd {s : Slice} {pos : s.Pos} :
                                    (s.replaceEnd pos).str = s.str
                                    @[simp]
                                    @[inline]
                                    def String.Slice.replaceStartEnd (s : Slice) (newStart newEnd : s.Pos) (h : newStart.offset newEnd.offset) :

                                    Given a slice and two valid positions within the slice, obtain a new slice on the same underlying string formed by the new bounds.

                                    Equations
                                    • s.replaceStartEnd newStart newEnd h = { str := s.str, startInclusive := newStart.str, endExclusive := newEnd.str, startInclusive_le_endExclusive := }
                                    Instances For
                                      @[simp]
                                      theorem String.Slice.str_replaceStartEnd {s : Slice} {newStart newEnd : s.Pos} {h : newStart.offset newEnd.offset} :
                                      (s.replaceStartEnd newStart newEnd h).str = s.str
                                      @[simp]
                                      theorem String.Slice.startInclusive_replaceStartEnd {s : Slice} {newStart newEnd : s.Pos} {h : newStart.offset newEnd.offset} :
                                      (s.replaceStartEnd newStart newEnd h).startInclusive = newStart.str
                                      @[simp]
                                      theorem String.Slice.endExclusive_replaceStartEnd {s : Slice} {newStart newEnd : s.Pos} {h : newStart.offset newEnd.offset} :
                                      (s.replaceStartEnd newStart newEnd h).endExclusive = newEnd.str
                                      def String.Slice.replaceStartEnd! (s : Slice) (newStart newEnd : s.Pos) :

                                      Given a slice and two valid positions within the slice, obtain a new slice on the same underlying string formed by the new bounds, or panic if the given end is strictly less than the given start.

                                      Equations
                                      • One or more equations did not get rendered due to their size.
                                      Instances For
                                        @[simp]
                                        @[simp]
                                        theorem String.Slice.utf8ByteSize_replaceStartEnd {s : Slice} {newStart newEnd : s.Pos} {h : newStart.offset newEnd.offset} :
                                        (s.replaceStartEnd newStart newEnd h).utf8ByteSize = newStart.offset.byteDistance newEnd.offset
                                        @[extern lean_string_utf8_get_fast]
                                        def String.decodeChar (s : String) (byteIdx : Nat) (h : (s.bytes.utf8DecodeChar? byteIdx).isSome = true) :
                                        Equations
                                        Instances For
                                          @[inline]
                                          def String.Slice.Pos.get {s : Slice} (pos : s.Pos) (h : pos s.endPos) :

                                          Obtains the character at the given position in the string.

                                          Equations
                                          Instances For

                                            Returns the byte at the given position in the string, or none if the position is the end position.

                                            Equations
                                            Instances For
                                              def String.Slice.Pos.get! {s : Slice} (pos : s.Pos) :

                                              Returns the byte at the given position in the string, or panicks if the position is the end position.

                                              Equations
                                              Instances For
                                                @[inline]

                                                Turns a valid position on the string s into a valid position on the slice s.toSlice.

                                                Equations
                                                Instances For
                                                  @[simp]
                                                  @[inline]

                                                  Given a string s, turns a valid position on the slice s.toSlice into a valid position on the string s.

                                                  Equations
                                                  Instances For
                                                    @[simp]
                                                    @[simp]
                                                    @[simp]
                                                    @[simp]
                                                    @[simp]
                                                    theorem String.ValidPos.toSlice_lt {s : String} {p q : s.ValidPos} :
                                                    @[simp]
                                                    @[inline]
                                                    def String.ValidPos.get {s : String} (pos : s.ValidPos) (h : pos s.endValidPos) :

                                                    Returns the character at the position pos of a string, taking a proof that p is not the past-the-end position.

                                                    This function is overridden with an efficient implementation in runtime code.

                                                    Examples:

                                                    • ("abc".pos ⟨1⟩ (by decide)).get (by decide) = 'b'
                                                    • ("L∃∀N".pos ⟨1⟩ (by decide)).get (by decide) = '∃'
                                                    Equations
                                                    Instances For
                                                      @[inline]

                                                      Returns the character at the position pos of a string, or none if the position is the past-the-end position.

                                                      This function is overridden with an efficient implementation in runtime code.

                                                      Equations
                                                      Instances For
                                                        @[inline]

                                                        Returns the character at the position pos of a string, or panics if the position is the past-the-end position.

                                                        This function is overridden with an efficient implementation in runtime code.

                                                        Equations
                                                        Instances For
                                                          @[inline]
                                                          def String.ValidPos.byte {s : String} (pos : s.ValidPos) (h : pos s.endValidPos) :

                                                          Returns the byte at the position pos of a string.

                                                          Equations
                                                          Instances For
                                                            @[deprecated String.head_toList (since := "2025-10-30")]
                                                            theorem String.head_data {b : String} {h : b.toList []} :
                                                            @[inline]

                                                            Given a slice s and a position on s.copy, obtain the corresponding position on s.

                                                            Equations
                                                            Instances For
                                                              @[simp]
                                                              @[inline]

                                                              Given a slice s and a position on s, obtain the corresponding position on s.copy.

                                                              Equations
                                                              Instances For
                                                                @[simp]
                                                                theorem String.Slice.Pos.offset_toCopy {s : Slice} {pos : s.Pos} :
                                                                @[simp]
                                                                theorem String.Slice.Pos.ofCopy_toCopy {s : Slice} {pos : s.Pos} :
                                                                pos.toCopy.ofCopy = pos
                                                                @[simp]
                                                                theorem String.ValidPos.ofCopy_inj {s : Slice} {pos pos' : s.copy.ValidPos} :
                                                                pos.ofCopy = pos'.ofCopy pos = pos'
                                                                theorem String.Slice.Pos.get_toCopy {s : Slice} {pos : s.Pos} (h : pos.toCopy s.copy.endValidPos) :
                                                                pos.toCopy.get h = pos.get
                                                                theorem String.Slice.Pos.get_eq_get_toCopy {s : Slice} {pos : s.Pos} {h : pos s.endPos} :
                                                                pos.get h = pos.toCopy.get
                                                                theorem String.Slice.Pos.byte_toCopy {s : Slice} {pos : s.Pos} (h : pos.toCopy s.copy.endValidPos) :
                                                                pos.toCopy.byte h = pos.byte
                                                                theorem String.Slice.Pos.byte_eq_byte_toCopy {s : Slice} {pos : s.Pos} {h : pos s.endPos} :
                                                                pos.byte h = pos.toCopy.byte
                                                                @[inline]
                                                                def String.Slice.Pos.ofReplaceStart {s : Slice} {p₀ : s.Pos} (pos : (s.replaceStart p₀).Pos) :
                                                                s.Pos

                                                                Given a position in s.replaceStart p₀, obtain the corresponding position in s.

                                                                Equations
                                                                Instances For
                                                                  @[simp]
                                                                  theorem String.Slice.Pos.offset_ofReplaceStart {s : Slice} {p₀ : s.Pos} {pos : (s.replaceStart p₀).Pos} :
                                                                  @[inline]
                                                                  def String.Slice.Pos.toReplaceStart {s : Slice} (p₀ pos : s.Pos) (h : p₀ pos) :
                                                                  (s.replaceStart p₀).Pos

                                                                  Given a position in s that is at least p₀, obtain the corresponding position in s.replaceStart p₀.

                                                                  Equations
                                                                  Instances For
                                                                    @[simp]
                                                                    theorem String.Slice.Pos.offset_toReplaceStart {s : Slice} {p₀ pos : s.Pos} {h : p₀ pos} :
                                                                    theorem String.Slice.Pos.ofReplaceStart_inj {s : Slice} {p₀ : s.Pos} {pos pos' : (s.replaceStart p₀).Pos} :
                                                                    ofReplaceStart pos = ofReplaceStart pos' pos = pos'
                                                                    theorem String.Slice.Pos.get_eq_get_ofReplaceStart {s : Slice} {p₀ : s.Pos} {pos : (s.replaceStart p₀).Pos} {h : pos (s.replaceStart p₀).endPos} :
                                                                    pos.get h = (ofReplaceStart pos).get
                                                                    @[inline]
                                                                    def String.Slice.Pos.ofReplaceEnd {s : Slice} {p₀ : s.Pos} (pos : (s.replaceEnd p₀).Pos) :
                                                                    s.Pos

                                                                    Given a position in s.replaceEnd p₀, obtain the corresponding position in s.

                                                                    Equations
                                                                    Instances For
                                                                      @[simp]
                                                                      theorem String.Slice.Pos.offset_ofReplaceEnd {s : Slice} {p₀ : s.Pos} {pos : (s.replaceEnd p₀).Pos} :
                                                                      @[inline]
                                                                      def String.Slice.Pos.toReplaceEnd {s : Slice} (p₀ pos : s.Pos) (h : pos p₀) :
                                                                      (s.replaceEnd p₀).Pos

                                                                      Given a position in s that is at most p₀, obtain the corresponding position in s.replaceEnd p₀.

                                                                      Equations
                                                                      Instances For
                                                                        @[simp]
                                                                        theorem String.Slice.Pos.offset_toReplaceEnd {s : Slice} {p₀ pos : s.Pos} {h : pos p₀} :
                                                                        (p₀.toReplaceEnd pos h).offset = pos.offset
                                                                        theorem String.Slice.Pos.copy_eq_append_get {s : Slice} {pos : s.Pos} (h : pos s.endPos) :
                                                                        (t₁ : String), (t₂ : String), s.copy = t₁ ++ singleton (pos.get h) ++ t₂ t₁.utf8ByteSize = pos.offset.byteIdx
                                                                        theorem String.Slice.Pos.utf8ByteSize_byte {s : Slice} {pos : s.Pos} {h : pos s.endPos} :
                                                                        (pos.byte h).utf8ByteSize = (pos.get h).utf8Size
                                                                        theorem String.ValidPos.utf8ByteSize_byte {s : String} {pos : s.ValidPos} {h : pos s.endValidPos} :
                                                                        (pos.byte h).utf8ByteSize = (pos.get h).utf8Size
                                                                        def String.Slice.Pos.next {s : Slice} (pos : s.Pos) (h : pos s.endPos) :
                                                                        s.Pos

                                                                        Advances a valid position on a slice to the next valid position, given a proof that the position is not the past-the-end position, which guarantees that such a position exists.

                                                                        Equations
                                                                        Instances For
                                                                          def String.Slice.Pos.next? {s : Slice} (pos : s.Pos) :

                                                                          Advances a valid position on a slice to the next valid position, or returns none if the given position is the past-the-end position.

                                                                          Equations
                                                                          Instances For
                                                                            def String.Slice.Pos.next! {s : Slice} (pos : s.Pos) :
                                                                            s.Pos

                                                                            Advances a valid position on a slice to the next valid position, or panics if the given position is the past-the-end position.

                                                                            Equations
                                                                            Instances For
                                                                              @[simp]
                                                                              theorem String.Slice.Pos.offset_next {s : Slice} {pos : s.Pos} {h : pos s.endPos} :
                                                                              (pos.next h).offset = pos.offset + pos.get h
                                                                              theorem String.Slice.Pos.byteIdx_offset_next {s : Slice} {pos : s.Pos} {h : pos s.endPos} :
                                                                              @[simp]
                                                                              theorem String.Slice.Pos.lt_next {s : Slice} {pos : s.Pos} {h : pos s.endPos} :
                                                                              pos < pos.next h
                                                                              @[inline]
                                                                              def String.Slice.Pos.prevAux {s : Slice} (pos : s.Pos) (h : pos s.startPos) :
                                                                              Equations
                                                                              Instances For
                                                                                def String.Slice.Pos.prevAux.go {s : Slice} (off : Nat) (h₁ : off < s.utf8ByteSize) :
                                                                                Equations
                                                                                • One or more equations did not get rendered due to their size.
                                                                                Instances For
                                                                                  @[inline]
                                                                                  def String.Slice.Pos.prev {s : Slice} (pos : s.Pos) (h : pos s.startPos) :
                                                                                  s.Pos

                                                                                  Returns the previous valid position before the given position, given a proof that the position is not the start position, which guarantees that such a position exists.

                                                                                  Equations
                                                                                  Instances For
                                                                                    def String.Slice.Pos.prev? {s : Slice} (pos : s.Pos) :

                                                                                    Returns the previous valid position before the given position, or none if the position is the start position.

                                                                                    Equations
                                                                                    Instances For
                                                                                      def String.Slice.Pos.prev! {s : Slice} (pos : s.Pos) :
                                                                                      s.Pos

                                                                                      Returns the previous valid position before the given position, or panics if the position is the start position.

                                                                                      Equations
                                                                                      Instances For
                                                                                        @[inline]
                                                                                        def String.Slice.pos (s : Slice) (off : Pos.Raw) (h : Pos.Raw.IsValidForSlice s off) :
                                                                                        s.Pos

                                                                                        Constructs a valid position on s from a position and a proof that it is valid.

                                                                                        Equations
                                                                                        • s.pos off h = { offset := off, isValidForSlice := h }
                                                                                        Instances For
                                                                                          @[simp]
                                                                                          theorem String.Slice.offset_pos {s : Slice} {off : Pos.Raw} {h : Pos.Raw.IsValidForSlice s off} :
                                                                                          (s.pos off h).offset = off

                                                                                          Constructs a valid position on s from a position, returning none if the position is not valid.

                                                                                          Equations
                                                                                          Instances For
                                                                                            def String.Slice.pos! (s : Slice) (off : Pos.Raw) :
                                                                                            s.Pos

                                                                                            Constructs a valid position s from a position, panicking if the position is not valid.

                                                                                            Equations
                                                                                            • One or more equations did not get rendered due to their size.
                                                                                            Instances For
                                                                                              @[extern lean_string_utf8_next_fast]
                                                                                              def String.ValidPos.next {s : String} (pos : s.ValidPos) (h : pos s.endValidPos) :

                                                                                              Advances a valid position on a string to the next valid position, given a proof that the position is not the past-the-end position, which guarantees that such a position exists.

                                                                                              Equations
                                                                                              Instances For
                                                                                                @[inline]

                                                                                                Advances a valid position on a string to the next valid position, or returns none if the given position is the past-the-end position.

                                                                                                Equations
                                                                                                Instances For
                                                                                                  @[inline]

                                                                                                  Advances a valid position on a string to the next valid position, or panics if the given position is the past-the-end position.

                                                                                                  Equations
                                                                                                  Instances For
                                                                                                    @[inline]
                                                                                                    def String.ValidPos.prev {s : String} (pos : s.ValidPos) (h : pos s.startValidPos) :

                                                                                                    Returns the previous valid position before the given position, given a proof that the position is not the start position, which guarantees that such a position exists.

                                                                                                    Equations
                                                                                                    Instances For
                                                                                                      @[inline]

                                                                                                      Returns the previous valid position before the given position, or none if the position is the start position.

                                                                                                      Equations
                                                                                                      Instances For
                                                                                                        @[inline]

                                                                                                        Returns the previous valid position before the given position, or panics if the position is the start position.

                                                                                                        Equations
                                                                                                        Instances For
                                                                                                          @[inline]
                                                                                                          def String.pos (s : String) (off : Pos.Raw) (h : Pos.Raw.IsValid s off) :

                                                                                                          Constructs a valid position on s from a position and a proof that it is valid.

                                                                                                          Equations
                                                                                                          Instances For
                                                                                                            @[inline]

                                                                                                            Constructs a valid position on s from a position, returning none if the position is not valid.

                                                                                                            Equations
                                                                                                            Instances For
                                                                                                              @[inline]
                                                                                                              def String.pos! (s : String) (off : Pos.Raw) :

                                                                                                              Constructs a valid position s from a position, panicking if the position is not valid.

                                                                                                              Equations
                                                                                                              Instances For
                                                                                                                @[inline]
                                                                                                                def String.Slice.Pos.cast {s t : Slice} (pos : s.Pos) (h : s = t) :
                                                                                                                t.Pos

                                                                                                                Constructs a valid position on t from a valid position on s and a proof that s = t.

                                                                                                                Equations
                                                                                                                Instances For
                                                                                                                  @[simp]
                                                                                                                  theorem String.Slice.Pos.offset_cast {s t : Slice} {pos : s.Pos} {h : s = t} :
                                                                                                                  (pos.cast h).offset = pos.offset
                                                                                                                  @[simp]
                                                                                                                  theorem String.Slice.Pos.cast_rfl {s : Slice} {pos : s.Pos} :
                                                                                                                  pos.cast = pos
                                                                                                                  @[inline]
                                                                                                                  def String.ValidPos.cast {s t : String} (pos : s.ValidPos) (h : s = t) :

                                                                                                                  Constructs a valid position on t from a valid position on s and a proof that s = t.

                                                                                                                  Equations
                                                                                                                  Instances For
                                                                                                                    @[simp]
                                                                                                                    theorem String.ValidPos.offset_cast {s t : String} {pos : s.ValidPos} {h : s = t} :
                                                                                                                    (pos.cast h).offset = pos.offset
                                                                                                                    @[simp]
                                                                                                                    theorem String.ValidPos.cast_rfl {s : String} {pos : s.ValidPos} :
                                                                                                                    pos.cast = pos
                                                                                                                    @[inline]
                                                                                                                    def String.Slice.findNextPos (offset : Pos.Raw) (s : Slice) (_h : offset < s.rawEndPos) :
                                                                                                                    s.Pos

                                                                                                                    Given a byte position within a string slice, obtains the smallest valid position that is strictly greater than the given byte position.

                                                                                                                    Equations
                                                                                                                    Instances For
                                                                                                                      theorem String.Slice.Pos.prevAuxGo_le_self {s : Slice} {p : Nat} {h : p < s.utf8ByteSize} :
                                                                                                                      prevAux.go p h { byteIdx := p }
                                                                                                                      @[simp]
                                                                                                                      theorem String.Slice.Pos.prev_ne_endPos {s : Slice} {p : s.Pos} {h : p s.startPos} :
                                                                                                                      @[simp]
                                                                                                                      theorem String.Slice.Pos.prev_lt {s : Slice} {p : s.Pos} {h : p s.startPos} :
                                                                                                                      p.prev h < p
                                                                                                                      @[simp]
                                                                                                                      theorem String.ValidPos.prev_lt {s : String} {p : s.ValidPos} {h : p s.startValidPos} :
                                                                                                                      p.prev h < p
                                                                                                                      def String.Slice.Pos.nextn {s : Slice} (p : s.Pos) (n : Nat) :
                                                                                                                      s.Pos

                                                                                                                      Advances the position p n times.

                                                                                                                      If this would move p past the end of s, the result is s.endPos.

                                                                                                                      Equations
                                                                                                                      Instances For
                                                                                                                        def String.Slice.Pos.prevn {s : Slice} (p : s.Pos) (n : Nat) :
                                                                                                                        s.Pos

                                                                                                                        Iterates p.prev n times.

                                                                                                                        If this would move p past the start of s, the result is s.endPos.

                                                                                                                        Equations
                                                                                                                        Instances For
                                                                                                                          @[inline]
                                                                                                                          def String.ValidPos.nextn {s : String} (p : s.ValidPos) (n : Nat) :

                                                                                                                          Advances the position p n times.

                                                                                                                          If this would move p past the end of s, the result is s.endValidPos.

                                                                                                                          Equations
                                                                                                                          Instances For
                                                                                                                            @[inline]
                                                                                                                            def String.ValidPos.prevn {s : String} (p : s.ValidPos) (n : Nat) :

                                                                                                                            Iterates p.prev n times.

                                                                                                                            If this would move p past the start of s, the result is s.startValidPos.

                                                                                                                            Equations
                                                                                                                            Instances For
                                                                                                                              Equations
                                                                                                                              Instances For
                                                                                                                                @[reducible, inline, deprecated String.Pos.Raw.utf8GetAux (since := "2025-10-09")]
                                                                                                                                Equations
                                                                                                                                Instances For
                                                                                                                                  @[extern lean_string_utf8_get]

                                                                                                                                  Returns the character at position p of a string. If p is not a valid position, returns the fallback value (default : Char), which is 'A', but does not panic.

                                                                                                                                  This function is overridden with an efficient implementation in runtime code. See String.Pos.Raw.utf8GetAux for the reference implementation.

                                                                                                                                  This is a legacy function. The recommended alternative is String.ValidPos.get, combined with String.pos or another means of obtaining a String.ValidPos.

                                                                                                                                  Examples:

                                                                                                                                  • "abc".get ⟨1⟩ = 'b'
                                                                                                                                  • "abc".get ⟨3⟩ = (default : Char) because byte 3 is at the end of the string.
                                                                                                                                  • "L∃∀N".get ⟨2⟩ = (default : Char) because byte 2 is in the middle of '∃'.
                                                                                                                                  Equations
                                                                                                                                  Instances For
                                                                                                                                    @[extern lean_string_utf8_get, deprecated String.Pos.Raw.get (since := "2025-10-14")]
                                                                                                                                    def String.get (s : String) (p : Pos.Raw) :
                                                                                                                                    Equations
                                                                                                                                    Instances For
                                                                                                                                      Equations
                                                                                                                                      Instances For
                                                                                                                                        @[reducible, inline, deprecated String.Pos.Raw.utf8GetAux (since := "2025-10-09")]
                                                                                                                                        Equations
                                                                                                                                        Instances For
                                                                                                                                          @[extern lean_string_utf8_get_opt]

                                                                                                                                          Returns the character at position p of a string. If p is not a valid position, returns none.

                                                                                                                                          This function is overridden with an efficient implementation in runtime code. See String.utf8GetAux? for the reference implementation.

                                                                                                                                          This is a legacy function. The recommended alternative is String.ValidPos.get, combined with String.pos? or another means of obtaining a String.ValidPos.

                                                                                                                                          Examples:

                                                                                                                                          • "abc".get? ⟨1⟩ = some 'b'
                                                                                                                                          • "abc".get? ⟨3⟩ = none
                                                                                                                                          • "L∃∀N".get? ⟨1⟩ = some '∃'
                                                                                                                                          • "L∃∀N".get? ⟨2⟩ = none
                                                                                                                                          Equations
                                                                                                                                          Instances For
                                                                                                                                            @[extern lean_string_utf8_get_opt, deprecated String.Pos.Raw.get? (since := "2025-10-14")]
                                                                                                                                            Equations
                                                                                                                                            Instances For
                                                                                                                                              @[extern lean_string_utf8_get_bang]

                                                                                                                                              Returns the character at position p of a string. Panics if p is not a valid position.

                                                                                                                                              See String.pos? and String.ValidPos.get for a safer alternative.

                                                                                                                                              This function is overridden with an efficient implementation in runtime code. See String.utf8GetAux for the reference implementation.

                                                                                                                                              This is a legacy function. The recommended alternative is String.ValidPos.get, combined with String.pos! or another means of obtaining a String.ValidPos.

                                                                                                                                              Examples

                                                                                                                                              • "abc".get! ⟨1⟩ = 'b'
                                                                                                                                              Equations
                                                                                                                                              Instances For
                                                                                                                                                @[extern lean_string_utf8_get_bang, deprecated String.Pos.Raw.get! (since := "2025-10-14")]
                                                                                                                                                def String.get! (s : String) (p : Pos.Raw) :
                                                                                                                                                Equations
                                                                                                                                                Instances For
                                                                                                                                                  Equations
                                                                                                                                                  Instances For
                                                                                                                                                    @[reducible, inline, deprecated String.Pos.Raw.utf8SetAux (since := "2025-10-09")]
                                                                                                                                                    abbrev String.utf8SetAux (c' : Char) :
                                                                                                                                                    Equations
                                                                                                                                                    Instances For
                                                                                                                                                      @[simp]
                                                                                                                                                      theorem String.ValidPos.get_toSlice {s : String} {p : s.ValidPos} {h : p.toSlice s.toSlice.endPos} :
                                                                                                                                                      p.toSlice.get h = p.get
                                                                                                                                                      @[simp]
                                                                                                                                                      theorem String.ValidPos.offset_next {s : String} (p : s.ValidPos) (h : p s.endValidPos) :
                                                                                                                                                      (p.next h).offset = p.offset + p.get h
                                                                                                                                                      @[simp]
                                                                                                                                                      theorem String.ValidPos.lt_next {s : String} (p : s.ValidPos) {h : p s.endValidPos} :
                                                                                                                                                      p < p.next h
                                                                                                                                                      @[simp]
                                                                                                                                                      @[inline]

                                                                                                                                                      The slice from the beginning of s up to p (exclusive).

                                                                                                                                                      Equations
                                                                                                                                                      Instances For
                                                                                                                                                        @[simp]
                                                                                                                                                        theorem String.str_replaceEnd {s : String} {p : s.ValidPos} :
                                                                                                                                                        (s.replaceEnd p).str = s
                                                                                                                                                        @[inline]

                                                                                                                                                        The slice from p (inclusive) up to the end of s.

                                                                                                                                                        Equations
                                                                                                                                                        Instances For
                                                                                                                                                          @[simp]
                                                                                                                                                          theorem String.str_replaceStart {s : String} {p : s.ValidPos} :
                                                                                                                                                          def String.replaceStartEnd! (s : String) (p₁ p₂ : s.ValidPos) :
                                                                                                                                                          Equations
                                                                                                                                                          Instances For
                                                                                                                                                            @[inline]
                                                                                                                                                            def String.ValidPos.ofReplaceStart {s : String} {p₀ : s.ValidPos} (pos : (s.replaceStart p₀).Pos) :

                                                                                                                                                            Given a position in s.replaceStart p₀, obtain the corresponding position in s.

                                                                                                                                                            Equations
                                                                                                                                                            Instances For
                                                                                                                                                              @[simp]
                                                                                                                                                              @[inline]
                                                                                                                                                              def String.ValidPos.toReplaceStart {s : String} (p₀ pos : s.ValidPos) (h : p₀ pos) :
                                                                                                                                                              (s.replaceStart p₀).Pos

                                                                                                                                                              Given a position in s that is at least p₀, obtain the corresponding position in s.replaceStart p₀.

                                                                                                                                                              Equations
                                                                                                                                                              Instances For
                                                                                                                                                                @[simp]
                                                                                                                                                                theorem String.ValidPos.offset_toReplaceStart {s : String} {p₀ pos : s.ValidPos} {h : p₀ pos} :
                                                                                                                                                                theorem String.ValidPos.ofReplaceStart_inj {s : String} {p₀ : s.ValidPos} {pos pos' : (s.replaceStart p₀).Pos} :
                                                                                                                                                                ofReplaceStart pos = ofReplaceStart pos' pos = pos'
                                                                                                                                                                theorem String.ValidPos.get_eq_get_ofReplaceStart {s : String} {p₀ : s.ValidPos} {pos : (s.replaceStart p₀).Pos} {h : pos (s.replaceStart p₀).endPos} :
                                                                                                                                                                pos.get h = (ofReplaceStart pos).get
                                                                                                                                                                @[inline]
                                                                                                                                                                def String.ValidPos.ofReplaceEnd {s : String} {p₀ : s.ValidPos} (pos : (s.replaceEnd p₀).Pos) :

                                                                                                                                                                Given a position in s.replaceEnd p₀, obtain the corresponding position in s.

                                                                                                                                                                Equations
                                                                                                                                                                Instances For
                                                                                                                                                                  @[simp]
                                                                                                                                                                  theorem String.ValidPos.offset_ofReplaceEnd {s : String} {p₀ : s.ValidPos} {pos : (s.replaceEnd p₀).Pos} :
                                                                                                                                                                  @[inline]
                                                                                                                                                                  def String.ValidPos.toReplaceEnd {s : String} (p₀ pos : s.ValidPos) (h : pos p₀) :
                                                                                                                                                                  (s.replaceEnd p₀).Pos

                                                                                                                                                                  Given a position in s that is at most p₀, obtain the corresponding position in s.replaceEnd p₀.

                                                                                                                                                                  Equations
                                                                                                                                                                  Instances For
                                                                                                                                                                    @[simp]
                                                                                                                                                                    theorem String.ValidPos.offset_toReplaceEnd {s : String} {p₀ pos : s.ValidPos} {h : pos p₀} :
                                                                                                                                                                    (p₀.toReplaceEnd pos h).offset = pos.offset
                                                                                                                                                                    theorem String.Slice.Pos.le_nextn {s : Slice} {p : s.Pos} {n : Nat} :
                                                                                                                                                                    p p.nextn n
                                                                                                                                                                    theorem String.ValidPos.le_nextn {s : String} {p : s.ValidPos} {n : Nat} :
                                                                                                                                                                    p p.nextn n
                                                                                                                                                                    theorem String.Slice.Pos.prevn_le {s : Slice} {p : s.Pos} {n : Nat} :
                                                                                                                                                                    p.prevn n p
                                                                                                                                                                    theorem String.ValidPos.prevn_le {s : String} {p : s.ValidPos} {n : Nat} :
                                                                                                                                                                    p.prevn n p
                                                                                                                                                                    @[extern lean_string_utf8_next]

                                                                                                                                                                    Returns the next position in a string after position p. If p is not a valid position or p = s.endPos, returns the position one byte after p.

                                                                                                                                                                    A run-time bounds check is performed to determine whether p is at the end of the string. If a bounds check has already been performed, use String.next' to avoid a repeated check.

                                                                                                                                                                    This is a legacy function. The recommended alternative is String.ValidPos.next or one of its variants like String.ValidPos.next?, combined with String.pos or another means of obtaining a String.ValisPos.

                                                                                                                                                                    Some examples of edge cases:

                                                                                                                                                                    • "abc".next ⟨3⟩ = ⟨4⟩, since 3 = "abc".endPos
                                                                                                                                                                    • "L∃∀N".next ⟨2⟩ = ⟨3⟩, since 2 points into the middle of a multi-byte UTF-8 character

                                                                                                                                                                    Examples:

                                                                                                                                                                    • "abc".get ("abc".next 0) = 'b'
                                                                                                                                                                    • "L∃∀N".get (0 |> "L∃∀N".next |> "L∃∀N".next) = '∀'
                                                                                                                                                                    Equations
                                                                                                                                                                    Instances For
                                                                                                                                                                      @[extern lean_string_utf8_next, deprecated String.Pos.Raw.next (since := "2025-10-14")]
                                                                                                                                                                      Equations
                                                                                                                                                                      Instances For
                                                                                                                                                                        Equations
                                                                                                                                                                        Instances For
                                                                                                                                                                          @[reducible, inline, deprecated String.Pos.Raw.utf8PrevAux (since := "2025-10-10")]
                                                                                                                                                                          Equations
                                                                                                                                                                          Instances For
                                                                                                                                                                            @[extern lean_string_utf8_prev]

                                                                                                                                                                            Returns the position in a string before a specified position, p. If p = ⟨0⟩, returns 0. If p is greater than rawEndPos, returns the position one byte before p. Otherwise, if p occurs in the middle of a multi-byte character, returns the beginning position of that character.

                                                                                                                                                                            For example, "L∃∀N".prev ⟨3⟩ is ⟨1⟩, since byte 3 occurs in the middle of the multi-byte character '∃' that starts at byte 1.

                                                                                                                                                                            This is a legacy function. The recommended alternative is String.ValidPos.prev or one of its variants like String.ValidPos.prev?, combined with String.pos or another means of obtaining a String.ValidPos.

                                                                                                                                                                            Examples:

                                                                                                                                                                            • "abc".get ("abc".rawEndPos |> "abc".prev) = 'c'
                                                                                                                                                                            • "L∃∀N".get ("L∃∀N".rawEndPos |> "L∃∀N".prev |> "L∃∀N".prev |> "L∃∀N".prev) = '∃'
                                                                                                                                                                            Equations
                                                                                                                                                                            Instances For
                                                                                                                                                                              @[extern lean_string_utf8_prev, deprecated String.Pos.Raw.prev (since := "2025-10-14")]
                                                                                                                                                                              Equations
                                                                                                                                                                              Instances For
                                                                                                                                                                                @[inline]

                                                                                                                                                                                Returns the first character in s. If s = "", returns (default : Char).

                                                                                                                                                                                Examples:

                                                                                                                                                                                Equations
                                                                                                                                                                                Instances For
                                                                                                                                                                                  @[export lean_string_front]
                                                                                                                                                                                  Equations
                                                                                                                                                                                  Instances For
                                                                                                                                                                                    @[inline]

                                                                                                                                                                                    Returns the last character in s. If s = "", returns (default : Char).

                                                                                                                                                                                    Examples:

                                                                                                                                                                                    • "abc".back = 'c'
                                                                                                                                                                                    • "".back = (default : Char)
                                                                                                                                                                                    Equations
                                                                                                                                                                                    Instances For
                                                                                                                                                                                      @[deprecated String.back_eq_get_prev_rawEndPos (since := "2025-10-20")]
                                                                                                                                                                                      @[extern lean_string_utf8_at_end]

                                                                                                                                                                                      Returns true if a specified byte position is greater than or equal to the position which points to the end of a string. Otherwise, returns false.

                                                                                                                                                                                      Examples:

                                                                                                                                                                                      • (0 |> "abc".next |> "abc".next |> "abc".atEnd) = false
                                                                                                                                                                                      • (0 |> "abc".next |> "abc".next |> "abc".next |> "abc".next |> "abc".atEnd) = true
                                                                                                                                                                                      • (0 |> "L∃∀N".next |> "L∃∀N".next |> "L∃∀N".next |> "L∃∀N".atEnd) = false
                                                                                                                                                                                      • (0 |> "L∃∀N".next |> "L∃∀N".next |> "L∃∀N".next |> "L∃∀N".next |> "L∃∀N".atEnd) = true
                                                                                                                                                                                      • "abc".atEnd ⟨4⟩ = true
                                                                                                                                                                                      • "L∃∀N".atEnd ⟨7⟩ = false
                                                                                                                                                                                      • "L∃∀N".atEnd ⟨8⟩ = true
                                                                                                                                                                                      Equations
                                                                                                                                                                                      Instances For
                                                                                                                                                                                        @[extern lean_string_utf8_at_end, deprecated String.Pos.Raw.atEnd (since := "2025-10-14")]
                                                                                                                                                                                        Equations
                                                                                                                                                                                        Instances For
                                                                                                                                                                                          @[extern lean_string_utf8_get_fast]
                                                                                                                                                                                          def String.Pos.Raw.get' (s : String) (p : Raw) (h : ¬atEnd s p = true) :

                                                                                                                                                                                          Returns the character at position p of a string. Returns (default : Char), which is 'A', if p is not a valid position.

                                                                                                                                                                                          Requires evidence, h, that p is within bounds instead of performing a run-time bounds check as in String.get.

                                                                                                                                                                                          A typical pattern combines get' with a dependent if-expression to avoid the overhead of an additional bounds check. For example:

                                                                                                                                                                                          def getInBounds? (s : String) (p : String.Pos) : Option Char :=
                                                                                                                                                                                            if h : s.atEnd p then none else some (s.get' p h)
                                                                                                                                                                                          

                                                                                                                                                                                          Even with evidence of ¬ s.atEnd p, p may be invalid if a byte index points into the middle of a multi-byte UTF-8 character. For example, "L∃∀N".get' ⟨2⟩ (by decide) = (default : Char).

                                                                                                                                                                                          This is a legacy function. The recommended alternative is String.ValidPos.get, combined with String.pos or another means of obtaining a String.ValidPos.

                                                                                                                                                                                          Examples:

                                                                                                                                                                                          • "abc".get' 0 (by decide) = 'a'
                                                                                                                                                                                          • let lean := "L∃∀N"; lean.get' (0 |> lean.next |> lean.next) (by decide) = '∀'
                                                                                                                                                                                          Equations
                                                                                                                                                                                          Instances For
                                                                                                                                                                                            @[extern lean_string_utf8_get_fast, deprecated String.Pos.Raw.get' (since := "2025-10-14")]
                                                                                                                                                                                            def String.get' (s : String) (p : Pos.Raw) (h : ¬Pos.Raw.atEnd s p = true) :
                                                                                                                                                                                            Equations
                                                                                                                                                                                            Instances For
                                                                                                                                                                                              @[extern lean_string_utf8_next_fast]
                                                                                                                                                                                              def String.Pos.Raw.next' (s : String) (p : Raw) (h : ¬atEnd s p = true) :

                                                                                                                                                                                              Returns the next position in a string after position p. The result is unspecified if p is not a valid position.

                                                                                                                                                                                              Requires evidence, h, that p is within bounds. No run-time bounds check is performed, as in String.next.

                                                                                                                                                                                              A typical pattern combines String.next' with a dependent if-expression to avoid the overhead of an additional bounds check. For example:

                                                                                                                                                                                              def next? (s : String) (p : String.Pos) : Option Char :=
                                                                                                                                                                                                if h : s.atEnd p then none else s.get (s.next' p h)
                                                                                                                                                                                              

                                                                                                                                                                                              This is a legacy function. The recommended alternative is String.ValidPos.next, combined with String.pos or another means of obtaining a String.ValidPos.

                                                                                                                                                                                              Example:

                                                                                                                                                                                              • let abc := "abc"; abc.get (abc.next' 0 (by decide)) = 'b'
                                                                                                                                                                                              Equations
                                                                                                                                                                                              Instances For
                                                                                                                                                                                                @[extern lean_string_utf8_next_fast, deprecated String.Pos.Raw.next' (since := "2025-10-14")]
                                                                                                                                                                                                Equations
                                                                                                                                                                                                Instances For
                                                                                                                                                                                                  theorem String.Pos.Raw.lt_next (s : String) (i : Raw) :
                                                                                                                                                                                                  i < next s i
                                                                                                                                                                                                  @[deprecated String.Pos.Raw.byteIdx_lt_byteIdx_next (since := "2025-10-10")]
                                                                                                                                                                                                  theorem String.Pos.Raw.utf8PrevAux_lt_of_pos (cs : List Char) (i p : Raw) :
                                                                                                                                                                                                  i < pp 0(utf8PrevAux cs i p).byteIdx < p.byteIdx
                                                                                                                                                                                                  theorem String.Pos.Raw.prev_lt_of_pos (s : String) (i : Raw) (h : i 0) :
                                                                                                                                                                                                  @[deprecated String.Pos.Raw.prev_lt_of_pos (since := "2025-10-10")]
                                                                                                                                                                                                  theorem String.prev_lt_of_pos (s : String) (i : Pos.Raw) (h : i 0) :
                                                                                                                                                                                                  @[irreducible]
                                                                                                                                                                                                  def String.posOfAux (s : String) (c : Char) (stopPos pos : Pos.Raw) :
                                                                                                                                                                                                  Equations
                                                                                                                                                                                                  • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                  Instances For
                                                                                                                                                                                                    @[inline]
                                                                                                                                                                                                    def String.posOf (s : String) (c : Char) :

                                                                                                                                                                                                    Returns the position of the first occurrence of a character, c, in a string s. If s does not contain c, returns s.rawEndPos.

                                                                                                                                                                                                    Examples:

                                                                                                                                                                                                    • "abcba".posOf 'a' = ⟨0⟩
                                                                                                                                                                                                    • "abcba".posOf 'z' = ⟨5⟩
                                                                                                                                                                                                    • "L∃∀N".posOf '∀' = ⟨4⟩
                                                                                                                                                                                                    Equations
                                                                                                                                                                                                    Instances For
                                                                                                                                                                                                      @[export lean_string_posof]
                                                                                                                                                                                                      Equations
                                                                                                                                                                                                      Instances For
                                                                                                                                                                                                        @[irreducible]
                                                                                                                                                                                                        Equations
                                                                                                                                                                                                        • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                        Instances For
                                                                                                                                                                                                          @[inline]

                                                                                                                                                                                                          Returns the position of the last occurrence of a character, c, in a string s. If s does not contain c, returns none.

                                                                                                                                                                                                          Examples:

                                                                                                                                                                                                          Equations
                                                                                                                                                                                                          Instances For
                                                                                                                                                                                                            @[irreducible]
                                                                                                                                                                                                            def String.findAux (s : String) (p : CharBool) (stopPos pos : Pos.Raw) :
                                                                                                                                                                                                            Equations
                                                                                                                                                                                                            • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                            Instances For
                                                                                                                                                                                                              @[inline]
                                                                                                                                                                                                              def String.find (s : String) (p : CharBool) :

                                                                                                                                                                                                              Finds the position of the first character in a string for which the Boolean predicate p returns true. If there is no such character in the string, then the end position of the string is returned.

                                                                                                                                                                                                              Examples:

                                                                                                                                                                                                              • "coffee tea water".find (·.isWhitespace) = ⟨6⟩
                                                                                                                                                                                                              • "tea".find (· == 'X') = ⟨3⟩
                                                                                                                                                                                                              • "".find (· == 'X') = ⟨0⟩
                                                                                                                                                                                                              Equations
                                                                                                                                                                                                              Instances For
                                                                                                                                                                                                                @[irreducible]
                                                                                                                                                                                                                def String.revFindAux (s : String) (p : CharBool) (pos : Pos.Raw) :
                                                                                                                                                                                                                Equations
                                                                                                                                                                                                                Instances For
                                                                                                                                                                                                                  @[inline]

                                                                                                                                                                                                                  Finds the position of the last character in a string for which the Boolean predicate p returns true. If there is no such character in the string, then none is returned.

                                                                                                                                                                                                                  Examples:

                                                                                                                                                                                                                  • "coffee tea water".revFind (·.isWhitespace) = some ⟨10⟩
                                                                                                                                                                                                                  • "tea".revFind (· == 'X') = none
                                                                                                                                                                                                                  • "".revFind (· == 'X') = none
                                                                                                                                                                                                                  Equations
                                                                                                                                                                                                                  Instances For

                                                                                                                                                                                                                    Returns the first position where the two strings differ.

                                                                                                                                                                                                                    If one string is a prefix of the other, then the returned position is the end position of the shorter string. If the strings are identical, then their end position is returned.

                                                                                                                                                                                                                    Examples:

                                                                                                                                                                                                                    Equations
                                                                                                                                                                                                                    Instances For
                                                                                                                                                                                                                      @[irreducible]
                                                                                                                                                                                                                      def String.firstDiffPos.loop (a b : String) (stopPos i : Pos.Raw) :
                                                                                                                                                                                                                      Equations
                                                                                                                                                                                                                      • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                                      Instances For
                                                                                                                                                                                                                        @[extern lean_string_utf8_extract]

                                                                                                                                                                                                                        Creates a new string that consists of the region of the input string delimited by the two positions.

                                                                                                                                                                                                                        The result is "" if the start position is greater than or equal to the end position or if the start position is at the end of the string. If either position is invalid (that is, if either points at the middle of a multi-byte UTF-8 character) then the result is unspecified.

                                                                                                                                                                                                                        This is a legacy function. The recommended alternative is String.ValidPos.extract, but usually it is even better to operate on String.Slice instead and call String.Slice.copy (only) if required.

                                                                                                                                                                                                                        Examples:

                                                                                                                                                                                                                        • "red green blue".extract ⟨0⟩ ⟨3⟩ = "red"
                                                                                                                                                                                                                        • "red green blue".extract ⟨3⟩ ⟨0⟩ = ""
                                                                                                                                                                                                                        • "red green blue".extract ⟨0⟩ ⟨100⟩ = "red green blue"
                                                                                                                                                                                                                        • "red green blue".extract ⟨4⟩ ⟨100⟩ = "green blue"
                                                                                                                                                                                                                        • "L∃∀N".extract ⟨1⟩ ⟨2⟩ = "∃∀N"
                                                                                                                                                                                                                        • "L∃∀N".extract ⟨2⟩ ⟨100⟩ = ""
                                                                                                                                                                                                                        Equations
                                                                                                                                                                                                                        Instances For
                                                                                                                                                                                                                          Equations
                                                                                                                                                                                                                          Instances For
                                                                                                                                                                                                                            Equations
                                                                                                                                                                                                                            Instances For
                                                                                                                                                                                                                              @[extern lean_string_utf8_extract, deprecated String.Pos.Raw.extract (since := "2025-10-14")]
                                                                                                                                                                                                                              Equations
                                                                                                                                                                                                                              Instances For
                                                                                                                                                                                                                                @[irreducible, specialize #[]]
                                                                                                                                                                                                                                def String.splitAux (s : String) (p : CharBool) (b i : Pos.Raw) (r : List String) :
                                                                                                                                                                                                                                Equations
                                                                                                                                                                                                                                • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                                                Instances For
                                                                                                                                                                                                                                  @[inline]

                                                                                                                                                                                                                                  Splits a string at each character for which p returns true.

                                                                                                                                                                                                                                  The characters that satisfy p are not included in any of the resulting strings. If multiple characters in a row satisfy p, then the resulting list will contain empty strings.

                                                                                                                                                                                                                                  Examples:

                                                                                                                                                                                                                                  • "coffee tea water".split (·.isWhitespace) = ["coffee", "tea", "water"]
                                                                                                                                                                                                                                  • "coffee tea water".split (·.isWhitespace) = ["coffee", "", "tea", "", "water"]
                                                                                                                                                                                                                                  • "fun x =>\n x + 1\n".split (· == '\n') = ["fun x =>", " x + 1", ""]
                                                                                                                                                                                                                                  Equations
                                                                                                                                                                                                                                  Instances For
                                                                                                                                                                                                                                    @[inline, deprecated String.splitToList (since := "2025-10-17")]
                                                                                                                                                                                                                                    def String.split (s : String) (p : CharBool) :
                                                                                                                                                                                                                                    Equations
                                                                                                                                                                                                                                    Instances For
                                                                                                                                                                                                                                      @[irreducible]
                                                                                                                                                                                                                                      def String.splitOnAux (s sep : String) (b i j : Pos.Raw) (r : List String) :

                                                                                                                                                                                                                                      Auxiliary for splitOn. Preconditions:

                                                                                                                                                                                                                                      • sep is not empty
                                                                                                                                                                                                                                      • b <= i are indexes into s
                                                                                                                                                                                                                                      • j is an index into sep, and not at the end

                                                                                                                                                                                                                                      It represents the state where we have currently parsed some split parts into r (in reverse order), b is the beginning of the string / the end of the previous match of sep, and the first j bytes of sep match the bytes i-j .. i of s.

                                                                                                                                                                                                                                      Equations
                                                                                                                                                                                                                                      • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                                                      Instances For
                                                                                                                                                                                                                                        @[inline]
                                                                                                                                                                                                                                        def String.splitOn (s : String) (sep : String := " ") :

                                                                                                                                                                                                                                        Splits a string s on occurrences of the separator string sep. The default separator is " ".

                                                                                                                                                                                                                                        When sep is empty, the result is [s]. When sep occurs in overlapping patterns, the first match is taken. There will always be exactly n+1 elements in the returned list if there were n non-overlapping matches of sep in the string. The separators are not included in the returned substrings.

                                                                                                                                                                                                                                        Examples:

                                                                                                                                                                                                                                        • "here is some text ".splitOn = ["here", "is", "some", "text", ""]
                                                                                                                                                                                                                                        • "here is some text ".splitOn "some" = ["here is ", " text "]
                                                                                                                                                                                                                                        • "here is some text ".splitOn "" = ["here is some text "]
                                                                                                                                                                                                                                        • "ababacabac".splitOn "aba" = ["", "bac", "c"]
                                                                                                                                                                                                                                        Equations
                                                                                                                                                                                                                                        Instances For
                                                                                                                                                                                                                                          @[irreducible]
                                                                                                                                                                                                                                          def String.offsetOfPosAux (s : String) (pos i : Pos.Raw) (offset : Nat) :
                                                                                                                                                                                                                                          Equations
                                                                                                                                                                                                                                          • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                                                          Instances For
                                                                                                                                                                                                                                            @[inline]

                                                                                                                                                                                                                                            Returns the character index that corresponds to the provided position (i.e. UTF-8 byte index) in a string.

                                                                                                                                                                                                                                            If the position is at the end of the string, then the string's length in characters is returned. If the position is invalid due to pointing at the middle of a UTF-8 byte sequence, then the character index of the next character after the position is returned.

                                                                                                                                                                                                                                            Examples:

                                                                                                                                                                                                                                            Equations
                                                                                                                                                                                                                                            Instances For
                                                                                                                                                                                                                                              @[export lean_string_offsetofpos]
                                                                                                                                                                                                                                              Equations
                                                                                                                                                                                                                                              Instances For
                                                                                                                                                                                                                                                @[irreducible, specialize #[]]
                                                                                                                                                                                                                                                def String.foldlAux {α : Type u} (f : αCharα) (s : String) (stopPos i : Pos.Raw) (a : α) :
                                                                                                                                                                                                                                                α
                                                                                                                                                                                                                                                Equations
                                                                                                                                                                                                                                                Instances For
                                                                                                                                                                                                                                                  @[inline]
                                                                                                                                                                                                                                                  def String.foldl {α : Type u} (f : αCharα) (init : α) (s : String) :
                                                                                                                                                                                                                                                  α

                                                                                                                                                                                                                                                  Folds a function over a string from the left, accumulating a value starting with init. The accumulated value is combined with each character in order, using f.

                                                                                                                                                                                                                                                  Examples:

                                                                                                                                                                                                                                                  • "coffee tea water".foldl (fun n c => if c.isWhitespace then n + 1 else n) 0 = 2
                                                                                                                                                                                                                                                  • "coffee tea and water".foldl (fun n c => if c.isWhitespace then n + 1 else n) 0 = 3
                                                                                                                                                                                                                                                  • "coffee tea water".foldl (·.push ·) "" = "coffee tea water"
                                                                                                                                                                                                                                                  Equations
                                                                                                                                                                                                                                                  Instances For
                                                                                                                                                                                                                                                    @[export lean_string_foldl]
                                                                                                                                                                                                                                                    Equations
                                                                                                                                                                                                                                                    Instances For
                                                                                                                                                                                                                                                      @[irreducible, specialize #[]]
                                                                                                                                                                                                                                                      def String.foldrAux {α : Type u} (f : Charαα) (a : α) (s : String) (i begPos : Pos.Raw) :
                                                                                                                                                                                                                                                      α
                                                                                                                                                                                                                                                      Equations
                                                                                                                                                                                                                                                      • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                                                                      Instances For
                                                                                                                                                                                                                                                        @[inline]
                                                                                                                                                                                                                                                        def String.foldr {α : Type u} (f : Charαα) (init : α) (s : String) :
                                                                                                                                                                                                                                                        α

                                                                                                                                                                                                                                                        Folds a function over a string from the right, accumulating a value starting with init. The accumulated value is combined with each character in reverse order, using f.

                                                                                                                                                                                                                                                        Examples:

                                                                                                                                                                                                                                                        • "coffee tea water".foldr (fun c n => if c.isWhitespace then n + 1 else n) 0 = 2
                                                                                                                                                                                                                                                        • "coffee tea and water".foldr (fun c n => if c.isWhitespace then n + 1 else n) 0 = 3
                                                                                                                                                                                                                                                        • "coffee tea water".foldr (fun c s => c.push s) "" = "retaw dna aet eeffoc"
                                                                                                                                                                                                                                                        Equations
                                                                                                                                                                                                                                                        Instances For
                                                                                                                                                                                                                                                          @[irreducible, specialize #[]]
                                                                                                                                                                                                                                                          def String.anyAux (s : String) (stopPos : Pos.Raw) (p : CharBool) (i : Pos.Raw) :
                                                                                                                                                                                                                                                          Equations
                                                                                                                                                                                                                                                          Instances For
                                                                                                                                                                                                                                                            @[inline]
                                                                                                                                                                                                                                                            def String.any (s : String) (p : CharBool) :

                                                                                                                                                                                                                                                            Checks whether there is a character in a string for which the Boolean predicate p returns true.

                                                                                                                                                                                                                                                            Short-circuits at the first character for which p returns true.

                                                                                                                                                                                                                                                            Examples:

                                                                                                                                                                                                                                                            • "brown".any (·.isLetter) = true
                                                                                                                                                                                                                                                            • "brown".any (·.isWhitespace) = false
                                                                                                                                                                                                                                                            • "brown and orange".any (·.isLetter) = true
                                                                                                                                                                                                                                                            • "".any (fun _ => false) = false
                                                                                                                                                                                                                                                            Equations
                                                                                                                                                                                                                                                            Instances For
                                                                                                                                                                                                                                                              @[export lean_string_any]
                                                                                                                                                                                                                                                              Equations
                                                                                                                                                                                                                                                              Instances For
                                                                                                                                                                                                                                                                @[inline]
                                                                                                                                                                                                                                                                def String.all (s : String) (p : CharBool) :

                                                                                                                                                                                                                                                                Checks whether the Boolean predicate p returns true for every character in a string.

                                                                                                                                                                                                                                                                Short-circuits at the first character for which p returns false.

                                                                                                                                                                                                                                                                Examples:

                                                                                                                                                                                                                                                                • "brown".all (·.isLetter) = true
                                                                                                                                                                                                                                                                • "brown and orange".all (·.isLetter) = false
                                                                                                                                                                                                                                                                • "".all (fun _ => false) = true
                                                                                                                                                                                                                                                                Equations
                                                                                                                                                                                                                                                                Instances For
                                                                                                                                                                                                                                                                  @[inline]
                                                                                                                                                                                                                                                                  def String.contains (s : String) (c : Char) :

                                                                                                                                                                                                                                                                  Checks whether a string contains the specified character.

                                                                                                                                                                                                                                                                  Examples:

                                                                                                                                                                                                                                                                  Equations
                                                                                                                                                                                                                                                                  Instances For
                                                                                                                                                                                                                                                                    @[export lean_string_contains]
                                                                                                                                                                                                                                                                    Equations
                                                                                                                                                                                                                                                                    Instances For
                                                                                                                                                                                                                                                                      theorem String.Pos.Raw.utf8SetAux_of_gt (c' : Char) (cs : List Char) {i p : Raw} :
                                                                                                                                                                                                                                                                      i > putf8SetAux c' cs i p = cs
                                                                                                                                                                                                                                                                      @[inline]

                                                                                                                                                                                                                                                                      Checks whether the string can be interpreted as the decimal representation of a natural number.

                                                                                                                                                                                                                                                                      A string can be interpreted as a decimal natural number if it is not empty and all the characters in it are digits.

                                                                                                                                                                                                                                                                      Use String.toNat? or String.toNat! to convert such a string to a natural number.

                                                                                                                                                                                                                                                                      Examples:

                                                                                                                                                                                                                                                                      Equations
                                                                                                                                                                                                                                                                      Instances For

                                                                                                                                                                                                                                                                        Interprets a string as the decimal representation of a natural number, returning it. Returns none if the string does not contain a decimal natural number.

                                                                                                                                                                                                                                                                        A string can be interpreted as a decimal natural number if it is not empty and all the characters in it are digits.

                                                                                                                                                                                                                                                                        Use String.isNat to check whether String.toNat? would return some. String.toNat! is an alternative that panics instead of returning none when the string is not a natural number.

                                                                                                                                                                                                                                                                        Examples:

                                                                                                                                                                                                                                                                        Equations
                                                                                                                                                                                                                                                                        Instances For
                                                                                                                                                                                                                                                                          def String.Pos.Raw.substrEq (s1 : String) (pos1 : Raw) (s2 : String) (pos2 : Raw) (sz : Nat) :

                                                                                                                                                                                                                                                                          Checks whether substrings of two strings are equal. Substrings are indicated by their starting positions and a size in UTF-8 bytes. Returns false if the indicated substring does not exist in either string.

                                                                                                                                                                                                                                                                          This is a legacy function. The recommended alternative is to construct slices representing the strings to be compared and use the BEq instance of String.Slice.

                                                                                                                                                                                                                                                                          Equations
                                                                                                                                                                                                                                                                          • One or more equations did not get rendered due to their size.
                                                                                                                                                                                                                                                                          Instances For
                                                                                                                                                                                                                                                                            @[deprecated String.Pos.Raw.substrEq (since := "2025-10-10")]
                                                                                                                                                                                                                                                                            def String.substrEq (s1 : String) (pos1 : Pos.Raw) (s2 : String) (pos2 : Pos.Raw) (sz : Nat) :
                                                                                                                                                                                                                                                                            Equations
                                                                                                                                                                                                                                                                            Instances For

                                                                                                                                                                                                                                                                              Checks whether the first string (p) is a prefix of the second (s).

                                                                                                                                                                                                                                                                              String.startsWith is a version that takes the potential prefix after the string.

                                                                                                                                                                                                                                                                              Examples:

                                                                                                                                                                                                                                                                              Equations
                                                                                                                                                                                                                                                                              Instances For
                                                                                                                                                                                                                                                                                @[export lean_string_isprefixof]
                                                                                                                                                                                                                                                                                Equations
                                                                                                                                                                                                                                                                                Instances For

                                                                                                                                                                                                                                                                                  Returns the position of the beginning of the line that contains the position pos.

                                                                                                                                                                                                                                                                                  Lines are ended by '\n', and the returned position is either 0 : String.Pos or immediately after a '\n' character.

                                                                                                                                                                                                                                                                                  Equations
                                                                                                                                                                                                                                                                                  Instances For
                                                                                                                                                                                                                                                                                    theorem String.ext {s₁ s₂ : String} (h : s₁.toList = s₂.toList) :
                                                                                                                                                                                                                                                                                    s₁ = s₂
                                                                                                                                                                                                                                                                                    theorem String.ext_iff {s₁ s₂ : String} :
                                                                                                                                                                                                                                                                                    s₁ = s₂ s₁.toList = s₂.toList
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    @[deprecated String.singleton_eq_ofList (since := "2025-10-30")]
                                                                                                                                                                                                                                                                                    @[deprecated String.toList_singleton (since := "2025-10-30")]
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    theorem String.toList_push {s : String} (c : Char) :
                                                                                                                                                                                                                                                                                    (s.push c).toList = s.toList ++ [c]
                                                                                                                                                                                                                                                                                    @[deprecated String.toList_push (since := "2025-10-30")]
                                                                                                                                                                                                                                                                                    theorem String.data_push {s : String} (c : Char) :
                                                                                                                                                                                                                                                                                    (s.push c).toList = s.toList ++ [c]
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    theorem String.length_push {s : String} (c : Char) :
                                                                                                                                                                                                                                                                                    (s.push c).length = s.length + 1
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    theorem String.length_pushn {s : String} (c : Char) (n : Nat) :
                                                                                                                                                                                                                                                                                    (s.pushn c n).length = s.length + n
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    theorem String.length_append (s t : String) :
                                                                                                                                                                                                                                                                                    (s ++ t).length = s.length + t.length
                                                                                                                                                                                                                                                                                    theorem String.lt_iff {s t : String} :
                                                                                                                                                                                                                                                                                    s < t s.toList < t.toList
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    theorem String.Pos.Raw.get!_eq_get (s : String) (p : Raw) :
                                                                                                                                                                                                                                                                                    get! s p = get s p
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    theorem String.Pos.Raw.get'_eq (s : String) (p : Raw) (h : ¬atEnd s p = true) :
                                                                                                                                                                                                                                                                                    get' s p h = get s p
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    theorem String.Pos.Raw.next'_eq (s : String) (p : Raw) (h : ¬atEnd s p = true) :
                                                                                                                                                                                                                                                                                    next' s p h = next s p
                                                                                                                                                                                                                                                                                    @[deprecated String.Pos.Raw.get!_eq_get (since := "2025-10-14")]
                                                                                                                                                                                                                                                                                    @[deprecated String.Pos.Raw.lt_next (since := "2025-10-10")]
                                                                                                                                                                                                                                                                                    theorem String.lt_next' (s : String) (p : Pos.Raw) :
                                                                                                                                                                                                                                                                                    @[simp]
                                                                                                                                                                                                                                                                                    theorem String.Pos.Raw.prev_zero (s : String) :
                                                                                                                                                                                                                                                                                    prev s 0 = 0
                                                                                                                                                                                                                                                                                    @[deprecated String.Pos.Raw.prev_zero (since := "2025-10-10")]
                                                                                                                                                                                                                                                                                    theorem String.prev_zero (s : String) :
                                                                                                                                                                                                                                                                                    @[deprecated String.Pos.Raw.get'_eq (since := "2025-10-14")]
                                                                                                                                                                                                                                                                                    theorem String.get'_eq (s : String) (p : Pos.Raw) (h : ¬Pos.Raw.atEnd s p = true) :
                                                                                                                                                                                                                                                                                    @[deprecated String.Pos.Raw.next'_eq (since := "2025-10-14")]
                                                                                                                                                                                                                                                                                    @[simp]