From 81b6367e982ad5c5154a6af36a84cdd282d15a7e Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Sun, 7 May 2017 15:25:19 -0400 Subject: [PATCH] Tweak white space parsing rules (again): * White space matches zero or more white space characters. * %n matches one white space character. * %t matches zero or one white space characters. --- date.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/date.html b/date.html index 6d236d1..a2c0562 100644 --- a/date.html +++ b/date.html @@ -26,7 +26,7 @@

Howard E. Hinnant
-2017-05-04
+2017-05-07

date

@@ -8076,8 +8076,11 @@ alternative representation. %n -Matches one or more white space characters. Consecutive %n and -%t act as a single %n. +Matches one white space character. +[Note: %n, %t and a space, can be combined to match +a wide range of white-space patterns. For example "%n " matches one or +more white space charcters, and "%n%t%t" matches one to three white +space characters. — end note] @@ -8110,7 +8113,7 @@ representation. %t -Equivalent to %n. +Matches zero or one white space characters.