[Learn]: ‘positiveLookbehind‘ Correct answer is not accepted.
See original GitHub issueStep Number: 47
Step Name: steps.positiveLookbehind.title
Language: en-us
What is the problem you are experiencing? Entered expressions (?<=$)\d+ doesn’t allow me to continue to the next question despite matching the answer.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:5 (3 by maintainers)
Top Results From Across the Web
python - Positive Lookbehind does not do what I expected
The lookbehind requires 0+ whitespace before the current location. Where is the current location? ^ sets the location at the beginning of the ......
Read more >Lookahead and Lookbehind Tutorial—Tips &Tricks - RexEgg
This uses a lookahead to restrict the character class \w: (?!Q)\w After the negative lookahead asserts that what follows the current position is...
Read more >Lookahead and Lookbehind Zero-Length Assertions
The positive lookbehind matches. Because it is zero-length, the current position in the string remains at the m. The next token is b,...
Read more >Lookahead and lookbehind - The Modern JavaScript Tutorial
Lookbehind is similar, but it looks behind. That is, it allows to match a pattern only if there's something before it. The syntax...
Read more >Positive and Negative Lookbehind (with Examples)
In this article you will learn about Lookbehind assertions in Regular Expressions their syntax and their positive and negative application.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
https://caniuse.com/js-regexp-lookbehind
The problem seems to be that safari doesn’t support this step. I’ll find a way to get this working for people who prefer to use Safari. In the worst case, you will be able to pass these steps and continue training tomorrow.
Works, thanks!