Check if string contains any of these characters:
`~!@#$%^*()_+={[}];:'",<.>/?\|
If a string contains any of these characters then return false else return true
Please note:
In above special characters I have not listed & and - because I want to allow these two special characters.
Please provide regex for both Javascript and C#.