Regexp - (Quantifier|Cardinality Indicators)

Regexp

About

A quantifier defines the number of times that:

may be seen.

Algorithm / Behaviors

It has three behaviors:

  • a Greedy one: match longest possible string. This is the default regular expression behavior.
  • a Lazy one: match shortest possible string. Match as few as possible, repeat as few times as possible
  • a Possessive one.





Discover More
Javascript - String

The in javascript. A string in JavaScript is encoded with the ucs-2 16-bit character set. An element of a JavaScript string is therefore a 16-bit code unit. code unitscode pointssurrogate pair Strings...



Share this page:
Follow us:
Task Runner