Skip to main content
Question

Filtering with large volume of attributes

  • February 27, 2018
  • 2 replies
  • 7 views

Forum|alt.badge.img

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?

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.

2 replies

redgeographics
Celebrity
Forum|alt.badge.img+60
  • Celebrity
  • 3703 replies
  • February 27, 2018

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.


Forum|alt.badge.img
  • Author
  • 8 replies
  • February 27, 2018

Thanks for your suggestion!