If i want to change the below
Hello
To:
HELLO
Its fine when i do \(Hello)\
But it dosent work for words such as:
HeLLo hello HellO
Is there any way i can get regex to pick all hello characters?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depending on your regular expression engine, there should be a way to indicate a case insensitive match.
For example, in Perl:
or Python:
Alternatively, you can do it manually for each character: