The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
[Solved] Filter with expression
Helloo
I'm trying to make a filter with this expression
valor=.*o$ || valor=.*h || valor=x && valor !=.*l.*
If a put only the equal expresion at the end('valor =.*l.* i' instead of 'valor !=.*l.*') I get a aswer. But if I used the not equal i get a error:
What I'm doing wrong?
I'm trying to make a filter with this expression
valor=.*o$ || valor=.*h || valor=x && valor !=.*l.*
If a put only the equal expresion at the end('valor =.*l.* i' instead of 'valor !=.*l.*') I get a aswer. But if I used the not equal i get a error:
What I'm doing wrong?
0
Answers
Filter Examples does not support mixing of AND and OR conditions. We are planning a major rework or replacement of this operator, until then, you could achieve the AND operator by simply removing it from the condition, and use a second Filter Examples operator with the last part of your condition.
Best, Marius
I really appreciate all your support. I did what you said and this worked for me.
Thank Marius.