i have the following regex in place to validate the name field in my program and it works fine
^[a-zA-Z\\d\\s_.@\\-]*$
{"name":"jfhgjhf"}
I now want to add an embedded json element that I am passing in as part of my json (I am using Schema Form) I want my taskDetails element to accept the same charachters as name as well as the charachters {[/:="
I tried the following regex with no joy
^[a-zA-Z\\d\\s_.@\\-{\\]\\[}/\\\\/\\/ ':=]*$
{"name":"jfhgjhf","taskDetails":"{\"ids\":[{\"id\":\"jhgjghjghfjf\"}]}"}
Any help on this would be greatly appreciated
Thanks Damien