Skip to main content
Question

can ChangeDetector differentiate letter cases?

  • July 15, 2016
  • 4 replies
  • 38 views

Forum|alt.badge.img

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!

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

4 replies

erik_jan
Contributor
Forum|alt.badge.img+26
  • Contributor
  • July 15, 2016

ChangeDetector is case sensitive for attribute values.

See attached image:


Forum|alt.badge.img
  • Author
  • July 15, 2016

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.


takashi
Celebrity
  • July 17, 2016

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.


Forum|alt.badge.img
  • Author
  • July 17, 2016

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.