Requirement;
All Special characters allowed excluding (`) (') () (") and Spaces using below for the same and working fine in ios 10
const UserIdRegExp = /[^`"' \\]$/g;
not working in ios11
const value='anand`';
when i am doing UserIdRegExp.test(value); ios10 return false.
and ios11 return true