Multiple choice technology programming languages What are the extended regular expression operators? + ? ^ ! * 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.