-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat: support for lookarounds and non-capture groups #64
Conversation
docs/API.md
Outdated
@@ -58,6 +58,65 @@ Regex syntax: `(...)`. | |||
|
|||
Captures, also known as capturing groups, extract and store parts of the matched string for later use. | |||
|
|||
### `nonCaptureGroup()` |
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.
@PaulJPhilp Do you think we need explicit nonCaptureGroups
as a feature. We already do it implicitly when needed (e.g. applying quantifiers like zeroOrMore
) to non-atomic values. What would be the benefits of having this as an explicit feature?
docs/API.md
Outdated
### `positiveLookahead()` | ||
|
||
```ts | ||
function positiveLookahead( |
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.
How about lookahead
for positive one and negetiveLookahead
for negative one, mimicking Swift Regex Builder in naming?
@PaulJPhilp awesome that you contributed this PR. I've left some comments. Could you also prepare some meaningful, real-life example of usage for lookaheads/look behinds? Like we have in |
My preference is to keep noncaptureGroup. It's in most RegEx docs and examples. I think less experienced coders will be confused by it's absence. |
@PaulJPhilp before making a call on this I want to clarify the reasoning behind adding BTW thx for adding examples 🔥 |
I use it for structuring and debugging. A form of a no-op. I prefer it to
using '[Element1, Element2]' form but this is just a personal preference.
The main documented use case (which I haven't used) is for asserting a
repeated pattern which, as you say, can be accomplished in other ways.
I can support either decision but prefer completeness. If it's not kept, I
think a note on alternatives would be helpful.
Paul
…On Tue, Feb 27, 2024 at 4:05 AM Maciej Jastrzebski ***@***.***> wrote:
@PaulJPhilp <https://github.com/PaulJPhilp> before making a call on this
I want to clarify the reasoning behind adding nonCaptureGroup is only to
have it as explicit construct because people referencing regex expressions
might be looking for it? Is there any other benefit for having it?
—
Reply to this email directly, view it on GitHub
<#64 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BA6V6ZWHA6D3NYEMBF62DULYVWOVDAVCNFSM6AAAAABDNUPAQGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNRWGA4DGNRWGY>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
fde6a72
to
073736d
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #64 +/- ##
==========================================
+ Coverage 99.32% 99.39% +0.06%
==========================================
Files 10 14 +4
Lines 149 165 +16
Branches 40 40
==========================================
+ Hits 148 164 +16
Misses 1 1 ☔ View full report in Codecov by Sentry. |
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.
Looks great! 🔥
I've decided to remove nonCaptureGroup
but to specifically note in the docs that this is not needed, on order to resolve potential issues from people looking for it.
Huge thanks especially for really advanced examples.
Summary
Adding support for look-arounds:
Adding support for non-capture groups.
Checklist
Test plan
Adding one test file for each function: