Find Attribute
- properties.find.value
Input:
- objs1 – Property-Holder
- key1 – String
- objs2 – Property-Holder
- key2 – String
- key_value – String
- default – Anything
Output:
- output – Anything
For each object in objs1
a line is searched in objs2
in which the
value of key1
from objs1
corresponds to the value of key2
from objs2
. From
this line the value of key_value
is returned. If there is no
line or has no corresponding attribute, default
is returned.
If there are several lines, the first search hit is returned.