Can I used
sgnarkhede2016
New Altair Community Member
Can I used "LIKE" on branch opeartor
e.g. I need to check "%{periodicity} LIKE %ROLLING%"
how to write this condition on branch
e.g. I need to check "%{periodicity} LIKE %ROLLING%"
how to write this condition on branch
Tagged:
0
Answers
-
Hi,i think you want to do something like
matches(%{periodicity},".+ROLLING.+")
That uses regular expressions.Best,Martin0 -
matches(%{periodicity},".+ROLLING.+") ,Not work for me
In %{periodicity}, values coming like ROLLING_10,ROLLING_20 etc0 -
Hi,then you need to adapt the regex to this. More like
.*ROLLING.*
Best,Martin0