EDMCS - Derived Property - Expression Builder Methods
Summary
The Expression Builder need more methodsContent
Please correct me if I am missing something but I think we need more methods than currently provided (clear, concat, equals, indexOf, length, replace, substring). For example, a custom property check if a node name contains "RESERVED" or "RESTRICTED". I am thinking my code would be:
if Node.name like "*RESERVED*" or Node.name like "*RETRICTED*" return "yes"
else return "no"
The actual code that I came up from the Expression Builder:
if Node.name.substring(Node.name.indexOF("RESERVED"), Node.name.length).equals(blank) AND Node.name.substring(Node.name.indexOf("RESTRICTED"), Node.name.length).equals(blank)
2