JavaScript – RegExp ?=n Quantifier
The JavaScript RegExp ?=n quantifier matches any string that is followed by a specific string n.
The JavaScript RegExp ?=n quantifier matches any string that is followed by a specific string n.
The JavaScript RegExp n+ quantifier matches any string that contains at least one n.
The JavaScript RegExp ^n quantifier matches any string with n at the beginning of it.
The JavaScript RegExp n* quantifier matches any string that contains zero or more occurrences of n.
The JavaScript RegExp n? quantifier matches any string that contains zero or one occurrences of n.
The JavaScript RegExp ?!n quantifier matches any string that is not followed by a specific string n.
The JavaScript RegExp n{X} quantifier matches any string that contains a sequence of X n’s. X must be a number.
The JavaScript RegExp n$ quantifier matches any string with n at the end of it.
The JavaScript RegExp n{X,} quantifier matches any string that contains a sequence of at least X n’s. X must be a number.
The JavaScript RegExp n{X,Y} quantifier matches any string that contains a sequence of X to Y n’s. Both X and Y must be a number.