Hi, I want to convert the matched string to lowercase in the Komodo Replace tool using the RegEx option. I’m using IDE 8.5.4.
Example: I want occurences like “myStringHello” to become “hello”. In Perl I’d use “\L”:
Find what: myString([A-Z])
Replace with: \L\1
But this doesn’t seem to work in Komodo as I guess it’s Python-based. The above results in “\Lhello”. I could not find an analgous escape sequence for lowercase conversion in Python regular expressions.
Is there a way to do this? Thanks.