Skip to content

Commit

Permalink
[doc] Adding explicit link to PCRE syntax (#31463)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlienart authored and ViralBShah committed Mar 24, 2019
1 parent f82b81c commit 10141d3
Showing 1 changed file with 1 addition and 1 deletion.
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

2 comments on commit 10141d3

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan

Please sign in to comment.