how can we design the string pattern if i want to allow special characters (#@$%) also to be included in the value for Name.
For Ex. All the below ones are valid entries for Name
Name = aaa990ZX
Name = a@#9980XS
Name = $$$$$$$$
Name = 00000000
typedef Name {
type string {
pattern [a-zA-Z0-9];
}
description
"Value " ;
}