We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 09dc6ac + 6e596d5 commit 298493fCopy full SHA for 298493f
src/Util/Strings/String.v
@@ -335,11 +335,14 @@ Abort.
335
Definition replace (from to s : string) : string
336
:= concat to (split from s).
337
338
+Notation Null := (String Ascii.Null "").
339
+Notation Backspace := (String Ascii.Backspace "").
340
Notation NewLine := (String Ascii.NewLine "").
341
Notation CR := (String Ascii.CR "").
342
Notation LF := (String Ascii.LF "").
343
Notation CRLF := (String Ascii.CR (String Ascii.LF "")).
344
Notation Tab := (String Ascii.Tab "").
345
+Notation NewPage := (String Ascii.NewPage "").
346
347
(** Given a list of strings, breaks all strings within the list at
348
CFLF, CF, and LF. Useful for normalizing a newline-separated list
0 commit comments