Multiple choice technology programming languages

Which modifier can be used when matching in Perl to ignore case?

  1. s

  2. v

  3. i

  4. c

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The i modifier is appended to regular expressions in Perl (e.g., /pattern/i) to perform case-insensitive matching.