hi every one
can any one help me out of the regular expression for the combination of alpha numeric.It should not allow only digits or alphabets.
abcd --not
123-not
it should like
a2bc123fdsa
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted May 14, 2012, 6:59 AM
string regExp = @"^(?![a-zA-Z]+$)(?!\d+$)([a-zA-Z]|\d)+$";
Naresh Babu GopavaramPosted May 14, 2012, 7:06 AM
Kunal VaishyaPosted May 14, 2012, 6:42 AM
this