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 row is searched in objs2
in which the value
of key1
from objs1
corresponds to the value of key2
from objs2
.
From this row the value of key_value
is returned. If there is no row or it has
no corresponding attribute, default
is returned. If there are several rows,
the first search hit is returned.