Condition check from string

@Naga_Abhishek_Reddy_Chepp

Then use split activity to split on comma and extract the first value…then it would contain only the condition details.

Str.Split({","},StringSplitOptions.None)(0).Replace("if","").Trim

This would give only the condition…

Cheers