It is possible to find a REGEX within a string (works perfectly) but I think that it doesn't work with the replacement option.
Just to give an example, I try to replace the first letter of words with its uppercase.
john wayne should become John Wayne
The find Regex is (ba-z])(]a-z]{0,}) to split the first letters from the others in 2 blocks
According to regex101 website, the substitution should be \U$1\L$2 (\U$$1\L$$2 for AA because of the $ specificity)
The result is not what expected >> UjLohn UwLayne U and L caracters are displayed instead of the first block uppercase transformation
Any idea ?
I can make it diffently of course but this is probably the best way i can think about
Thx in advance
Stéphane