JAVASCRIPT
JavaScript Alternation (OR)
JavaScript Alternation (OR) This chapter is dedicated to another term in JavaScript regular expressions: Alternation. The simple form of alternation …
JavaScript Alternation (OR) This chapter is dedicated to another term in JavaScript regular expressions: Alternation. The simple form of alternation …
Backreferences in pattern: \N and \k<name> The contents of capturing groups can be used not only in the replacement string or in the result, bu…
Capturing Groups Now we are going to cover another useful feature of JavaScript regular expressions: capturing groups, allowing to capture parts of a…
Greedy and Lazy Quantifiers There are two operation modes for quantifiers in JavaScript. In this chapter, we will see how the search works with greed…