The Sorter does not appear to have an option for case-insensitive sort. Is it possible?
I am using FME Desktop 2016.1.3.1
The Sorter does not appear to have an option for case-insensitive sort. Is it possible?
I am using FME Desktop 2016.1.3.1
Hi @jimo you can use BulkAttributeRenamer and choose lower or upper case.
Thanks
Hi @jimo, there is no option to perform case-insensitive sorting. As a workaround, consider uniforming all attribute values to one of UPPER CASE or lower case, with the StringCaseChanger, @UpperCase function or @LowerCase function.
Hi @jimo you can use BulkAttributeRenamer and choose lower or upper case.
Thanks
Is there a way to make the sort and keep the case of the values in the attribute?
Make a COPY of your original field (eg using AttributeManager).
Change case of data in new field to UpperCase.
Sort on this new UpperCase field.
................
Hope this helps
Howard L'
I think the NaturalSorter will give you the desired result.
Hi @jimo, there is no option to perform case-insensitive sorting. As a workaround, consider uniforming all attribute values to one of UPPER CASE or lower case, with the StringCaseChanger, @UpperCase function or @LowerCase function.
select * from my_table order by upper(key_attribute)
Make a COPY of your original field (eg using AttributeManager).
Change case of data in new field to UpperCase.
Sort on this new UpperCase field.
................
Hope this helps
Howard L'
Thanks
Hi @jimo, there is no option to perform case-insensitive sorting. As a workaround, consider uniforming all attribute values to one of UPPER CASE or lower case, with the StringCaseChanger, @UpperCase function or @LowerCase function.
Hi @jimo, there is no option to perform case-insensitive sorting. As a workaround, consider uniforming all attribute values to one of UPPER CASE or lower case, with the StringCaseChanger, @UpperCase function or @LowerCase function.