Let’s say I have a string:
"\System\Classes\SomeClass"
And I want to convert this into:
"\system\classes\someClass"
How can I do this – convert each “\X” into “\x”? Which regular expression should I use, and can I do this using regular expressions? (as far as I know they search only for the first occurrence of the searched pattern).
Maybe like this if last word is class always