What is the best method to remove 75+ attributes from a file with 500 attributes? Is there a way to use a list of the attributes 75+ attributes to parse from the 500?
Page 1 / 1
If you have a list of attributes you like to remove you can use the BulkAttributeRemover. Wrap the list in ( ) and separate the entries with | symbols and you're set.
Like this:
There is a catch though, as it does regex pattern matching it's possible to remove too much.
Thanks for your suggestion!