I need a regular expression that allows english alphabets and numbers and "-" and not allow every thing else. but recently I found out that my regular expression not stopping french language alphabets and numbers
My regular expression is as follow,
@"[^\w\d-]";
How can I change the above regular expression so only english alphabets, numbers and "-" can be allowed only?