You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds support for inline RegExp pattern modifiers. Modifiers allow you to change the currently active RegExp flags within a subexpression. (?imsx-imsx:subexpression) — Sets or unsets (using -) the specified RegExp flags for the subexpression.
TL;DR
We plan to implement Regular Expression Pattern Modifiers in GraalJS.
Details
Adds support for inline RegExp pattern modifiers. Modifiers allow you to change the currently active RegExp flags within a subexpression.
(?imsx-imsx:subexpression)
— Sets or unsets (using-
) the specified RegExp flags for the subexpression.Example:
The text was updated successfully, but these errors were encountered: