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

[FEA] Enable support for more regular expressions with \A and \Z #4800

Closed
NVnavkumar opened this issue Feb 16, 2022 · 1 comment · Fixed by #5349
Closed

[FEA] Enable support for more regular expressions with \A and \Z #4800

NVnavkumar opened this issue Feb 16, 2022 · 1 comment · Fixed by #5349
Assignees
Labels
feature request New feature or request

Comments

@NVnavkumar
Copy link
Collaborator

Is your feature request related to a problem? Please describe.
Currently, there are certain escape sequences in regular expressions that are unsupported in the plugin because the behavior is either inconsistent with Spark or crashes the underlying libcudf.

Describe the solution you'd like
\A*, \A+ and \Z can be transpiled to equivalents:

  • \A in repetitions can be transpiled to single \A or \A? depending on whether there is a * or + or {0,} or {1,}, and etc.
  • \Z can be transpiled to [\n\r]*$, and in repetition we could at least support + by essentially dropping it
@NVnavkumar NVnavkumar added feature request New feature or request ? - Needs Triage Need team to review and classify labels Feb 16, 2022
@jlowe jlowe removed the ? - Needs Triage Need team to review and classify label Feb 22, 2022
@NVnavkumar NVnavkumar self-assigned this Apr 21, 2022
@NVnavkumar
Copy link
Collaborator Author

Partial duplicate of #4532 to enable \Z.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants