function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
rumit lumiarumit lumia 

regEx in dupeblocker to match last nine digits

Hi,

I have to match last nine digits of Mobile phone field of contact object in dupeblocker.


For example

+321469876542
should be a match to 
0469876542


Is it possible?


RegEx is possible in dupeblocker, so any idea how to match these two strings using regEx?


Best,
Rumit
Best Answer chosen by rumit lumia
rumit lumiarumit lumia
.{9}$ did the trick.

All Answers

NagendraNagendra (Salesforce Developers) 
Hi Rumit,

Please check with below link from stack overflow community with similar issue. Let us know if this helps.

Regards,
Nagendra.
rumit lumiarumit lumia
Sorry Nagendra,
I had already tried this link, but couldn't got enough luck.

Anyone any more ideas?

Br,
Rumit
rumit lumiarumit lumia
.{9}$ did the trick.
This was selected as the best answer