Depending on your regex engine there should be a way to specify case insensitivity.
For example, in Perl:
/Hello/i
or Python:
re.compile(r"hello", re.IGNORECASE)
Alternatively, you can do it manually for each character:
[Hh][Ee][Ll][Ll][Oo]
source
to share