I want to use regex to prohibit certain characters. This works. However, I cannot write superscripts, although they are allowed.
This is my regex:
return [
'name' => ['regex:/^[^\x27\x22\\@!$&§{\[\]}><;?]+$/']
];
I want to store name like "This is the nam 234³". But the "³" or "²" doesn't store.