I couldn't find any documents about this. So can anybody tell me if ChangeDetector can detect letter case different when comparing attributes. Thanks for your help!
ChangeDetector is case sensitive for attribute values.
See attached image:
ChangeDetector is case sensitive for attribute values.
See attached image:
Thanks for your quick response. Is there a way to compare attribute in case insensitive? otherwise, I have to convert to one case for comparison.
Thanks for your quick response. Is there a way to compare attribute in case insensitive? otherwise, I have to convert to one case for comparison.
Hi @fmenewbie, if you want to compare attribute values in case-insensitive, change the case of all values to lowercase (or UPPERCASE) using the StringCaseChanger transformer.
Hi @fmenewbie, if you want to compare attribute values in case-insensitive, change the case of all values to lowercase (or UPPERCASE) using the StringCaseChanger transformer.
thanks akashi for your response. I used AttributeCreator LowerCase string function and converted to a same case for comparison. your way deffinitely is gonna work.