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
I find two small questions about this. As follows:
About "lookahead", I find it can't lookahead forward. For example,
| play around with regex | matches | expect output | real output |
| ---------------------- | ---- | ---- | ---- |
| (?<=num)\d+ | num123 | 123 | Error: Line 1: expected "?"(?<=num)\d+|
When I input regex, it will reflash. But it will set the pointer to the start which makes trouble to input new word and then throws error.
Nonetheless, I absolutely love this util. It offers many samples and can display how the regex matching. Thank you for create this!
XD.
The text was updated successfully, but these errors were encountered:
I find two small questions about this. As follows:
| play around with regex | matches | expect output | real output |
| ---------------------- | ---- | ---- | ---- |
| (?<=num)\d+ | num123 | 123 | Error: Line 1: expected "?"(?<=num)\d+|
Nonetheless, I absolutely love this util. It offers many samples and can display how the regex matching. Thank you for create this!
XD.
The text was updated successfully, but these errors were encountered: