Documentation

Mathlib.Data.String.Lemmas

Miscellaneous lemmas about strings #

theorem String.congr_append (a b : String) :
a ++ b = { data := a.data ++ b.data }
@[simp]
theorem String.length_replicate (n : ) (c : Char) :
@[simp]
theorem String.leftpad_length (n : ) (c : Char) (s : String) :

The length of the String returned by String.leftpad n a c is equal to the larger of n and s.length

theorem String.leftpad_prefix (n : ) (c : Char) (s : String) :
theorem String.leftpad_suffix (n : ) (c : Char) (s : String) :
s.IsSuffix (leftpad n c s)