How to check whether a customer’s answer contains a specific keyword

How to check whether a customer’s answer contains a specific keyword

To check if a customer’s response contains a specific keyword in a business process, follow these steps:

  1. After the Beesender: Ask a question element, add a Conditional Flow.

  1. In the Condition, select Formula.

  1. Use the Answer parameter from the Beesender: Ask a question element and apply the following expression:
    [#Beesender: Ask a question.Answer#].ToLower().Contains("value")

  1. Replace "value" with the keyword you want to search for.

 

This condition will return true if the customer’s answer contains the specified word, regardless of letter case.