-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Match all regex #3589
Match all regex #3589
Conversation
@JeffBezanson @StefanKarpinski - please review. sorry for the delay on this one. did not get time over the week. it incorporates the changes discussed. |
Great. At a casual glance, this is looking quite good. My only immediate objection is to the |
@StefanKarpinski - you're right - thanks for catching it. the |
Looks good. |
Thanks for this. What is the |
It lets you query features the PCRE library was configured with. Seems harmless to include it in the low-level PCRE interface. |
Stdlib: Pkg URL: https://github.com/JuliaLang/Pkg.jl.git Stdlib branch: master Julia branch: master Old commit: 047734e4c New commit: f570abd39 Julia version: 1.11.0-DEV Pkg version: 1.11.0 Bump invoked by: @KristofferC Powered by: [BumpStdlibs.jl](https://github.com/JuliaLang/BumpStdlibs.jl) Diff: JuliaLang/Pkg.jl@047734e...f570abd ``` $ git log --oneline 047734e4c..f570abd39 f570abd39 tweak how Pkg is loaded for precompiling when testing (#3606) d3bd38b90 sort compat entries in `pkg> compat` (#3605) 5e07cfed0 Ensure that `string(::VersionSpec)` is compatible with `semver_spec()` (#3580) 6bed7c41a Clarify handling of LOAD_PATH in docstring and REPL help (#3589) 5261b3be7 tweak test dep docs (#3574) 72b430d50 status: expand 2 symbol upgrade note to highlight *may* be upgradable (#3576) b32db473d precompile: show ext parent in output report (#3603) ``` Co-authored-by: Dilum Aluthge <[email protected]>
matchall function to find all occurrences of a regex pattern in a string.
Follow up on the last pull request - #3525
These commits fix the issues that were raised there.