How to validate Delimiters in a microflow

0
Hi everyone,   Suppose I have one import button and from that import button I need to call a microflow and that microflow has to validate the delimiter and call the respective delimiter microflow. Could anyone please tell me how to do this.    Thanks in advance
asked
2 answers
0

Hi Sruthi,

you can use contains function in decision to know the delimiter

contains($your_variable,';') if it returns true then you can call corresponding microflow for this delimiter

answered
0

What is the goal of the validation?

  1. Checking if it is present? the solution of Sharad will work best
  2. Splitting the string value in separated strings based on delimiter? Use the StringSplit Java Action from the Community Commons Module
answered