Differences
This shows you the differences between two versions of the page.
docs:programming:cpp:boost:regex_example [2009/02/11 22:28] – created billh | docs:programming:cpp:boost:regex_example [2009/02/14 12:56] (current) – billh | ||
---|---|---|---|
Line 24: | Line 24: | ||
} | } | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== sub-expression match ===== | ||
+ | A sub-expression match retains the components specified in parethesis () for later use. | ||
+ | <code cpp> | ||
+ | #include < | ||
+ | #include < | ||
+ | #include < | ||
+ | |||
+ | int main(int argc, char* argv[]){ | ||
+ | |||
+ | std:: | ||
+ | if(argc > 1){ | ||
+ | input = argv[1]; | ||
+ | }else{ | ||
+ | std::cin >> input; | ||
+ | } | ||
+ | |||
+ | // note that an escape slash \ needs escaped itself | ||
+ | boost:: | ||
+ | boost:: | ||
+ | if( regex_match(input.c_str(), | ||
+ | std::cout << " | ||
+ | std::cout << " | ||
+ | std::cout << " | ||
+ | std::cout << " | ||
+ | }else{ | ||
+ | std::cout << "No match" << std::endl; | ||
+ | } | ||
+ | |||
return 0; | return 0; | ||
} | } |