csk_fn_contains

Use this function to see if the substring is contained in the object.
  • Boolean: csk_fn_contains(Object input, String substring)
  • Input:
    • Object input: The object to be checked
    • String substring: The string that may reside within the input
  • Example:

    $csk_fn_contains({"ABC"}, "B") → true

    $csk_fn_contains({"ABC"}, "D") → false