Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

springtimeday
Copy link

Added description of regex feature.

@AnthonyCalandra
Copy link
Owner

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)
Copy link
Owner

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;
}
Copy link
Owner

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.
Copy link
Owner

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants