Expand my Community achievements bar.

Never miss an update of the Adobe Journey Optimizer Community Lens! Subscribe now to get the latest updates, insights, and highlights delivered straight to your inbox every time a new edition drops.
SOLVED

How to get the last 4 digit from a string in AJO

Avatar

Level 2

I have to get the last 4 digit from the account number. How to achieve that in the AJO

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

You can validate it on the following lines 

{%= substr(toString(<ReplaceWithAccountNumber>), length(toString(<ReplaceWithAccountNumber>))-4, length(toString(<ReplaceWithAccountNumber>))) %}

View solution in original post

2 Replies

Avatar

Correct answer by
Employee Advisor

You can validate it on the following lines 

{%= substr(toString(<ReplaceWithAccountNumber>), length(toString(<ReplaceWithAccountNumber>))-4, length(toString(<ReplaceWithAccountNumber>))) %}

Avatar

Level 1

Hello @NiteshSingh ,

 

If your usecase is to display the last 4 digits of account number by masking it. we have below mask function,

 

{%= mask("123443216789",0,4) %}

  - this function will keep last 4 digits as it is and mask the remaining as X.

 

Output - XXXXXXXX6789

 

If your usecase is to get last 4 digits for other calculation you can refer the code suggested by @Mohan_Dugganab