Do we have any regular expression to be used in microflow which allow some special characters Like -,_,%,& and /

0
Do we have any regular expression to be used in microflow which allow some special characters Like "%,& and /"  
asked
2 answers
2

In a regex you should escape certain characters. So – becomes \- and / should become \/. The other character could be used. See also https://regex-escape.com/online-regex-escape.php

Regards,

Ronald

 

answered
0

simply add the "\" escape character in front of each special character you need to use

answered