FME 2017.0.0.0
I try to use StringReplacer to uppercase letters to lowercase letters, but failed.
Attribute:attr (has a value "ABCD")
Mode:Realace Regular Expression
Text To Replace:([A-Z])
Replacement Text:@LowerCase(\\1)
I also tried the @UpperCase,@Format,@PadLeft,@PadRight..., but those function seems does not work for regular expression groups (\\1) too.
String functions cannot be used in a regular expression group?