Operations ‣ Rules ‣ Utilities ‣ Tools ‣ lookupGetAllRegExp
lookupGetAllRegExp
Examples:
Given the following data table named ‘colors’:
english | deutsch | hex |
---|---|---|
black | schwarz | #000000 |
white | weiß | #FFFFFF |
red | rot | #FF0000 |
- if $(‘description’) is ‘There is a white and a black horse in the pasture.’:
lookupGetAllRegExp($('description'), 'colors', 'english', 'english')
→ [‘white’,‘black’] - if $(‘description’) is ‘There is a white and a black horse in the pasture.’:
lookupGetAllRegExp($('description'), 'colors', 'english', 'deutsch')
→ [‘weiß’,‘schwarz’]
All table entries that match are returned.