Multiple choice technology programming languages

What are the extended regular expression operators?

  1. +

  2. ?

  3. ^

  4. !

  5. *

Reveal answer Fill a bubble to check yourself
A,B Correct answer
Explanation

Extended regular expressions add the + (one or more) and ? (zero or one) quantifiers to basic regex, which already includes * (zero or more). The ^ anchor is available in basic regex, while ! is not a regex metacharacter.