Hello everyone,
We're currently working on a challenge involving conditions based on both language and first name. Here's the scenario:
We need to handle multiple combinations of these conditions to ensure the correct content is shown.
The expression is:
if language = Arabic & firstName != null & firstName != ""
element 1
else if language = Arabic & firstName = null
element 2
else if language = Arabic & firtsName = ""
element 3
else if language = English & firstName != null & firstName != ""
element 4
else if language = English & firstName = null
element 5
else if language = English & firtsName = ""
element 6
else if language = Arabic & firstName = null
element 7
else
element 8
Solved! Go to Solution.
Views
Replies
Total Likes
You can use the following functions in the if block.
References below -
You can use the following functions in the if block.
References below -
Thank you!
Views
Replies
Total Likes
For this current case @ElenaGor I have used a split condition inside the journey using this function matchRegExp(<parameters>) to identify if the language is written in Arabic or Latin alphabet (this also validate if the first name exist or not). Then in the Content you added specific personalization for the first name
Views
Replies
Total Likes
Views
Likes
Replies