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

[doc] Adding explicit link to PCRE syntax #31463

Merged
merged 1 commit into from
Mar 24, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[doc] Adding explicit link to PCRE syntax
  • Loading branch information
tlienart committed Mar 24, 2019
commit 3aaabff0042c2de8f64c78540f1295a710fb8a89
2 changes: 1 addition & 1 deletion doc/src/manual/strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ are given in the [Metaprogramming](@ref) section.
## Regular Expressions

Julia has Perl-compatible regular expressions (regexes), as provided by the [PCRE](http:https://www.pcre.org/)
library. Regular expressions are related to strings in two ways: the obvious connection is that
library (a description of the syntax can be found [here](http:https://www.pcre.org/current/doc/html/pcre2syntax.html)). Regular expressions are related to strings in two ways: the obvious connection is that
regular expressions are used to find regular patterns in strings; the other connection is that
regular expressions are themselves input as strings, which are parsed into a state machine that
can be used to efficiently search for patterns in strings. In Julia, regular expressions are input
Expand Down