Examveda
Examveda

What will be the result when non greedy repetition is used on the pattern /a+?b/ ?

A. Matches the letter b preceded by the fewest number of a’s possible

B. Matches the letter b preceded by any number of a

C. Matches letter a preceded by letter b, in the stack order

D. None of the mentioned

Answer: Option A

Solution(By Examveda Team)

Using non greedy repetition may not always produce the results you expect. /a+?b/ matches the letter b preceded by the fewest number of a’s possible.

This Question Belongs to Javascript >> Classes And Modules

Join The Discussion

Related Questions on Classes and Modules