-
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?
Added regex description #139
Conversation
Thanks for your contribution. I made some comments. Also, could you make the same change to the README.md file? |
@@ -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) |
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
} | ||
|
||
return 0; | ||
} |
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.
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 main
since it distracts from the example. Something like this:
// 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
}
|
||
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 comment
The reason will be displayed to describe this comment to others. Learn more.
Put any class or function names in single backticks please.
Added description of regex feature.