No, it doesn't work. I've tried it and i still got the unrecognised escape sequence error
Main Topics
Browse All Topicshi all, i need to write a regular expression to check if there is any of the following special characters: \/"[]:|<>+=l,?*@ in a string using C#
so i've created a regex pattern like this
System.Text.RegularExpress
But it doesn't work of course,
so i modified it a bit and added in a few escape characters but it still doesn't work
System.Text.RegularExpress
It seems i have problems with this two characters: "[" and "]". So can anyone tell me how to write the regular expression correctly to detect any of \/"[]:|<>+=l,?*@ ?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thanks dfiala13. Actually i have just figured out the problem. The correct one expression is:
Regex("[[\\]\\\\/\"|:@<>+=
as the ? *...etc doesn't need escape inside a square bracket.
But since your original comment gave me some idea on what the problem could be, i've still accepted your answer
Thanks
Business Accounts
Answer for Membership
by: dfiala13Posted on 2004-04-25 at 22:58:26ID: 10915695
You just didn't escape enough
[\[\]\\/\"\|:@<>+=,\?\*]