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?
|
|
If i want to change the below
To:
Its fine when i do But it dosent work for words such as:
Is there any way i can get regex to pick all
|
||
|
|
|
|
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:
|
||
|
|
|
|
use incasesensitive modifier of your library for instance
Also it would be wise to add \b, word delimiter so you do not select "ahello".
|
|||
|
|