Validate String value contains character

0
Hi All,   How can I validate if string value contains (Unicode: U+200b HTML: &#8203)  character in microwflow .   I used this expression but cannot detect the character   replace all can detect the character   Thank you.
asked
2 answers
0

Hi Dale Dela Cruz,

 

How about for replacing: 

replaceAll($PersonList/FirstName, ‘[\\p{Cf}]’, ‘test’)

 

Maybe it is better to use isMAtch

isMatch($PersonList/FirstName, ‘[\\p{Cf}]’)

 

Go Make It

answered
0

Stackoverflow might have the answer. Did you see this post: https://stackoverflow.com/questions/24205193/javascript-remove-zero-width-space-unicode-8203-from-string

Regards,

Ronald

 

answered