Hi,
is there any way to replace ALL big letters for small ones?
Thanks
Hi,
is there any way to replace ALL big letters for small ones?
Thanks
If it's the attribute values: StringCaseChanger
If it's the attribute names: BulkAttributeRenamer
You could use an AttributeCreator with:
new_value = @LowerCase(@Value(old_value))
Hi,
Great! I used StringCaseChanger. Worked perfect!