Questions tagged [appway]

Appway is an expression language focused on simpler syntax. Use for questions about Appway code.

1 questions
0
votes
1 answer

How do I check if a string contains a substring in appway script?

The CONTAINS($val1, $val2, $delim) function in AppwayScript checks whether a delimiter separated string contains a certain value as a substring. So, e.g.: CONTAINS('a|b|c', 'b', '|') == true but CONTAINS('aa|bb|cc', 'b', '|') == false How do I…
Mau
  • 14,234
  • 2
  • 31
  • 52