I have a field with the numberic part of an address. I would like to replace the last 2 digits with XX and combine it with the beginning part. I have gotten as far as using the SubstringExtractor to extract the last 2 characters, but how can I combine it with the first part?
Examples
I have:
123
12345
Need it to be:
1XX
123XX
What does the transformer do with the part of the string that doesn't get extracted???
Thanks!