/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

github.com
| | exploringjs.com
2.7 parsecs away

Travel
| |
| | blog.alexdevero.com
4.3 parsecs away

Travel
| | Learn all you need to get started with regular expressions in JavaScript. Learn how to create new regular expressions, how to use them, test them and more.
| | mathiasbynens.be
2.6 parsecs away

Travel
| | [AI summary] The article discusses recent advancements in ECMAScript regular expressions, including new features like dotAll mode, lookbehind assertions, named capture groups, Unicode property escapes, and set notation, along with proposals for further enhancements.
| | blog.stevenlevithan.com
13.6 parsecs away

Travel
| Unlike lookaheads, JavaScript doesn't support regex lookbehind syntax. That's unfortunate, but I'm not content with just resigning to that fact. Following are three ways I've come up with to mimic lookbehinds in JavaScript. For those not familar with the concept of lookbehinds, they are zero-width assertions which, like the more specific \b, ^, and $...