C++11 in the form of an express test

Source: Internet
Author: User

Vc++2010 already supports regex and can be used to compile the following code.

#include <string> #include <regex> #include <iostream>using namespace std;/* test c++11 in the normal form. */int Main () {    //defines a regular table, matches the time format of the    regex Testregex ("[0-9]{2}:[0-9]{2}:[0-9]{2}\\.[ 0-9]{3} ");     strings to match string    strText ("OTA LOG sftch/mpa Stream 2/reservation Accept  07:23:50.580 channel:147, Pilot pn:232" );     Cmatch result; The result    //search is the match substring, match is the entire string    if (Regex_search (Strtext.c_str (), result, Testregex, regex_constants:: Format_default)    {        cout << result.str () << Endl;    }    else    {        cout << "fail." << Endl;       }}


C++11 in the form of an express test

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.