-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added regex description #139
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,7 @@ C++11 includes the following new library features: | |
- [memory model](#memory-model) | ||
- [std::async](#stdasync) | ||
- [std::begin/end](#stdbeginend) | ||
- [regular expressions](#regex) | ||
|
||
## C++11 Language Features | ||
|
||
|
@@ -969,6 +970,39 @@ auto a = CountTwos(vec); // 2 | |
auto b = CountTwos(arr); // 1 | ||
``` | ||
|
||
### regular expressions | ||
The <regex> library offers tools to handle regular expressions, supporting POSIX and other common syntaxes for regular expressions. | ||
|
||
The std::regex class is initialized with a regular expression and handles parsing the regular expression. | ||
std::regex_search() looks for a regex inside a given string, and std::regex_replace() replaces any instances of the regex inside the given string. | ||
std::regex_iterator and std::regex_token_iterator allow iteration through matches and submatches (respectively) within the string. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Put any class or function names in single backticks please. |
||
|
||
The following example illustrates the use of regular expressions to identify an email address: | ||
|
||
#include <iostream> | ||
#include <regex> | ||
#include <string> | ||
|
||
int main() { | ||
|
||
// Define a simple regex pattern for an email address | ||
std::regex email_pattern(R"([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})"); | ||
|
||
// Input string to check | ||
std::string email = "[email protected]"; | ||
|
||
// Check if the input string matches the pattern | ||
if (std::regex_match(email, email_pattern)) { | ||
std::cout << email << " is a valid email address." << std::endl; | ||
} else { | ||
std::cout << email << " is not a valid email address." << std::endl; | ||
} | ||
|
||
return 0; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For code sample make sure you enclose them in code blocks (using backticks). Also for brevity, I don't include headers and a detailed implementation using // Define a simple regex pattern for an email address.
std::regex email_pattern("[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}");
// Input string to check.
std::string email = "[email protected]";
// Check if the input string matches the pattern:
if (std::regex_match(email, email_pattern)) {
// matches
} else {
// no matches
} |
||
|
||
|
||
|
||
## Acknowledgements | ||
* [cppreference](http://en.cppreference.com/w/cpp) - especially useful for finding examples and documentation of new library features. | ||
* [C++ Rvalue References Explained](http://web.archive.org/web/20240324121501/http://thbecker.net/articles/rvalue_references/section_01.html) - a great introduction I used to understand rvalue references, perfect forwarding, and move semantics. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be
#regular-expressions