Putting
(?i) at the start of the regexp makes the entire expression case insensitive. The Python docs on it are
very limited.
The example I tested was:
Code:
add_to_replace_metadata:
title=>(?i)TEST=>teeest!
Which replaced Test only when
(?i) was present.