GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::time_get::get_monthname,(3) C++ Standard Libary std::time_get::get_monthname,(3)

std::time_get::get_monthname, - std::time_get::get_monthname,


Defined in header <locale>
public:


iter_type get_monthname( iter_type beg, iter_type end, std::ios_base& str, (1)


std::ios_base::iostate& err, std::tm* t) const;
protected:


virtual iter_type do_get_monthname( iter_type beg, iter_type end, (2)
std::ios_base& str,


std::ios_base::iostate& err, std::tm* t) const;


1) public member function, calls the protected virtual member function
do_get_monthname of the most derived class.
2) Reads successive characters from the sequence [beg, end) and parses out the month
name (possibly abbreviated), using the default format for month names expected by
this locale, which is the same format as "%b" as used by the functions
std::get_time, time_get::get, and the POSIX function strptime()


If it finds abbreviated name, followed by the characters that are valid for the full
name, it continues reading until it consumes all the characters for the full name or
finds a character that isn't expected, in which case parsing fails even if the first
few characters were a valid abbreviation.


The parsed month is stored in the std::tm field t->tm_mon.


If the end iterator is reached before a valid month name is read, the function sets
std::ios_base::eofbit in err. If a parsing error is encountered, the function sets
std::ios_base::failbit in err.


beg - iterator designating the start of the sequence to parse
end - one past the end iterator for the sequence to parse
str - a stream object that this function uses to obtain locale facets when needed,
e.g. std::ctype to skip whitespace or std::collate to compare strings
err - stream error flags object that is modified by this function to indicate errors
t - pointer to the std::tm object that will hold the result of this function call


Iterator pointing one past the last character in [beg, end) that was recognized as a
part of a valid month name.


This function is usually case-insensitive.


If a parsing error is encountered, most implementations of this function leave *t
unmodified.

// Run this code


#include <iostream>
#include <locale>
#include <sstream>
#include <iterator>
#include <ctime>


void try_get_mon(const std::string& s)
{
std::cout << "Parsing the month out of '" << s <<
"' in the locale " << std::locale().name() << '\n';
std::istringstream str(s);
std::ios_base::iostate err = std::ios_base::goodbit;


std::tm t;
std::istreambuf_iterator<char> ret =
std::use_facet<std::time_get<char>>(str.getloc()).get_monthname(
{str}, {}, str, err, &t
);
str.setstate(err);
std::istreambuf_iterator<char> last{};
if(str) {
std::cout << "Successfully parsed, month number is " << t.tm_mon;
if(ret != last) {
std::cout << ". Remaining content: ";
std::copy(ret, last, std::ostreambuf_iterator<char>(std::cout));
} else {
std::cout << ". The input was fully consumed";
}
} else {
std::cout << "Parse failed. Unparsed string: ";
std::copy(ret, last, std::ostreambuf_iterator<char>(std::cout));
}
std::cout << '\n';
}
int main()
{
std::locale::global(std::locale("ja_JP.utf8"));
try_get_mon("2月");
std::locale::global(std::locale("th_TH.utf8"));
try_get_mon("กุมภาพันธ์");
std::locale::global(std::locale("el_GR.utf8"));
try_get_mon("Φεβ");
try_get_mon("Φεβρουάριος");
std::locale::global(std::locale("en_US.utf8"));
try_get_mon("Febrile");
}


Parsing the month out of '2月' in the locale ja_JP.utf8
Successfully parsed, month number is 1. The input was fully consumed
Parsing the month out of 'กุมภาพันธ์' in the locale th_TH.utf8
Successfully parsed, month number is 1. The input was fully consumed
Parsing the month out of 'Φεβ' in the locale el_GR.utf8
Successfully parsed, month number is 1. The input was fully consumed
Parsing the month out of 'Φεβρουάριος' in the locale el_GR.utf8
Successfully parsed, month number is 1. The input was fully consumed
Parsing the month out of 'Febrile' in the locale en_US.utf8
Parse failed. Unparsed string: ile


get_time parses a date/time value of specified format
(C++11) (function template)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.