Namespaces
Variants
Views
Actions

std::chrono::from_stream (std::chrono::year_month_day)

From cppreference.com
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (C++20)
Dynamic memory management
Program utilities
Coroutine support (C++20)
Variadic functions
Debugging support
(C++26)
Three-way comparison
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)

 
 
 
Defined in header <chrono>
template< class CharT, class Traits, class Alloc = std::allocator<CharT> >

std::basic_istream<CharT, Traits>&
    from_stream( std::basic_istream<CharT, Traits>& is, const CharT* fmt,
                 std::chrono::year_month_day& ymd,
                 std::basic_string<CharT, Traits, Alloc>* abbrev = nullptr,

                 std::chrono::minutes* offset = nullptr );
(since C++20)

Attempts to parse the input stream is into the std::chrono::year_month_day ymd according to the format string fmt.

Behaves as an UnformattedInputFunction, except that it has an unspecified effect on is.gcount(). After constructing and checking the sentry object, attempts to parse the input stream is into ymd according to the format string fmt. If the parse fails to decode a valid year_month_day, is.setstate(std::ios_base::failbit) is called and ymd is not modified.

If the format specifier %Z is used and successfully parsed, the parsed value is assigned to *abbrev if abbrev is not null. If the format specifier %z or a modified variant is used and successfully parsed, the parsed value is assigned to *offset if offset is not null.

Contents

[edit] Parameters

is - an input stream
fmt - a format string (see below)
ymd - object to hold the parse result
abbrev - if not null, pointer to an object that will hold the time zone abbreviation or name corresponding to the %Z specifier
offset - if not null, pointer to an object that will hold the offset from UTC corresponding to the %z specifier

[edit] Format string

The format string consists of zero or more conversion specifiers and ordinary characters. Each ordinary character, excluding whitespace characters and the terminating null character, matches one identical character from the input stream, or causes the function to fail if the next character on the stream does not compare equal.

Each whitespace character matches zero or more whitespace characters in the input stream.

Each unmodified conversion specifier begins with a % character followed by a character that determines the behavior of the specifier. Some conversion specifiers have a modified form in which an E or O modifier character is inserted after the % character. Some conversion specifiers have a modified form in which a width parameter given as a positive decimal integer (shown as N below) is inserted after the % character. Each conversion specifier causes the matched characters to be interpreted as parts of date and time types according to the table below.

A character sequence in the format string that begins with a % but does not match one of the conversion specifiers below is interpreted as ordinary characters.

If from_stream fails to parse everything specified by the format string, or if insufficient information is parsed to specify a complete result, or if parsing discloses contradictory information, is.setstate(std::ios_base::failbit) is called.

The following conversion specifiers are available:

Conversion
specifier
Explanation
%% Matches a literal % character.
%n Matches one whitespace character.
%t Matches zero or one whitespace character.
Year
%C
%NC
%EC
Parses the century as a decimal number. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified command %EC interprets the locale's alternative representation of the century.

%y
%Ny
%Ey
%Oy
Parses the last two decimal digits of the year. If the century is not otherwise specified (e.g. with %C), values in the range [69, 99] are presumed to refer to the years 1969 to 1999, and values in the range [00, 68] are presumed to refer to the years 2000 to 2068. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified commands %Ey and %Oy interpret the locale's alternative representation.

%Y
%NY
%EY
Parses the year as a decimal number. The width N specifies the maximum number of characters to read. The default width is 4. Leading zeroes are permitted but not required.

The modified command %EY interprets the locale's alternative representation.

Month
%b
%B
%h
Parses the locale's full or abbreviated case-insensitive month name.
%m
%Nm
%Om
Parses the month as a decimal number (January is 1). The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified command %Om interprets the locale's alternative representation.

Day
%d
%Nd
%Od
%e
%Ne
%Oe
Parses the day of month as a decimal number. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified commands %Od and %Oe interpret the locale's alternative representation.

Day of the week
%a
%A
Parses the locale's full or abbreviated case-insensitive weekday name.
%u
%Nu
Parses the ISO weekday as a decimal number (1-7), where Monday is 1. The width N specifies the maximum number of characters to read. The default width is 1. Leading zeroes are permitted but not required.
%w
%Nw
%Ow
Parses the weekday as a decimal number (0-6), where Sunday is 0. The width N specifies the maximum number of characters to read. The default width is 1. Leading zeroes are permitted but not required.

The modified command %Ow interprets the locale's alternative representation.

ISO 8601 week-based year

In ISO 8601 weeks begin with Monday and the first week of the year must satisfy the following requirements:

  • Includes January 4
  • Includes first Thursday of the year
%g
%Ng
Parses the last two decimal digits of the ISO 8601 week-based year. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.
%G
%NG
Parses the ISO 8601 week-based year as a decimal number. The width N specifies the maximum number of characters to read. The default width is 4. Leading zeroes are permitted but not required.
%V
%NV
Parses the ISO 8601 week of the year as a decimal number. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.
Week/day of the year
%j
%Nj
Parses the day of the year as a decimal number (January 1 is 1). The width N specifies the maximum number of characters to read. The default width is 3. Leading zeroes are permitted but not required.
%U
%NU
%OU
Parses the week number of the year as a decimal number. The first Sunday of the year is the first day of week 01. Days of the same year prior to that are in week 00. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified command %OU interprets the locale's alternative representation.

%W
%NW
%OW
Parses the week number of the year as a decimal number. The first Monday of the year is the first day of week 01. Days of the same year prior to that are in week 00. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified command %OW interprets the locale's alternative representation.

Date
%D Equivalent to "%m/%d/%y".
%F
%NF
Equivalent to "%Y-%m-%d". If the width is specified, it is only applied to the %Y.
%x
%Ex
Parses the locale's date representation.

The modified command %Ex interprets the locale's alternate date representation.

Time of day
%H
%NH
%OH
Parses the hour (24-hour clock) as a decimal number. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified command %OH interprets the locale's alternative representation.

%I
%NI
%OI
Parses the hour (12-hour clock) as a decimal number. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified command %OI interprets the locale's alternative representation.

%M
%NM
%OM
Parses the minute as a decimal number. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified command %OM interprets the locale's alternative representation.

%S
%NS
%OS
Parses the second as a decimal number. The width N specifies the maximum number of characters to read. The default width is 2. Leading zeroes are permitted but not required.

The modified command %OS interprets the locale's alternative representation.

%p Parses the locale's equivalent of the AM/PM designations associated with a 12-hour clock.
%R Equivalent to "%H:%M".
%T Equivalent to "%H:%M:%S".
%r Parses the locale's 12-hour clock time.
%X
%EX
Parses the locale's time representation.

The modified command %EX interprets the locale's alternate time representation.

Miscellaneous
%c
%Ec
Parses the locale's date and time representation.

The modified command %Ec interprets the locale's alternative date and time representation.

%z
%Ez
%Oz
Parses the offset from UTC in the format [+|-]hh[mm]. For example -0430 refers to 4 hours 30 minutes behind UTC and 04 refers to 4 hours ahead of UTC.

The modified commands %Ez and %Oz parses the format [+|-]h[h][:mm] (i.e., requiring a : between the hours and minutes and making the leading zero for hour optional).

%Z Parses the time zone abbreviation or name, taken as the longest sequence of characters that only contains the characters A through Z, a through z, 0 through 9, -, +, _, and /.

[edit] Return value

is

[edit] See also

(C++20)
parses a chrono object from a stream
(function template) [edit]