I try to make a regex that accepts any input combination, but the condition is text must be of less than 200 characters.
for example
'123ababb' => valid
'abbd$5%' => valid
I used the following regex but it doesn't match for any special character.
[a-zA-Z0-9 .,']{0,200}