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

feat: support for lookarounds and non-capture groups #64

Merged
merged 7 commits into from
Feb 27, 2024

Conversation

PaulJPhilp
Copy link
Contributor

@PaulJPhilp PaulJPhilp commented Feb 17, 2024

Summary

Adding support for look-arounds:

  • positiveLookahead
  • negativeLookahead
  • positiveLookbehind
  • negativeLookbehind

Adding support for non-capture groups.

Checklist

  • Implementation
  • Tests (pattern and matching)
  • API docs
  • README docs
  • Example docs & tests

Test plan

Adding one test file for each function:

  • positive-lookahead.test.ts,
  • positive-lookbehind.test.ts,
  • negative-lookbehind.test.ts,
  • negative-lookahead.test.ts,
  • non-capture-group.test.ts

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()`
Copy link
Member

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(
Copy link
Member

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?

@mdjastrzebski
Copy link
Member

@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 Examples.md and example-xxx.test.ts.

@PaulJPhilp
Copy link
Contributor Author

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.

@mdjastrzebski
Copy link
Member

mdjastrzebski commented Feb 27, 2024

@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?

BTW thx for adding examples 🔥

@PaulJPhilp
Copy link
Contributor Author

PaulJPhilp commented Feb 27, 2024 via email

@codecov-commenter
Copy link

codecov-commenter commented Feb 27, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.39%. Comparing base (5a56d68) to head (187bfc6).

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.
📢 Have feedback on the report? Share it here.

Copy link
Member

@mdjastrzebski mdjastrzebski left a 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.

@mdjastrzebski mdjastrzebski merged commit aa585b1 into callstack:main Feb 27, 2024
3 checks passed
@PaulJPhilp PaulJPhilp deleted the lookarounds branch February 27, 2024 22:35
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.

4 participants