Socrata was acquired by Tyler Technologies in 2018 and is now the Data and Insights division of Tyler. The platform is still powered by the same software formerly known as Socrata but you will see references to Data & Insights going forward.

contains

Function: contains
  tell whether or not a string contains another string

Examples:

  contains('foobar', 'foo')
  -- Result: true

  contains('foobar', 'bar')
  -- Result: true

  contains('foobar', 'baz')
  -- Result: false




Signatures
text, text -> checkbox