I need a regex that will verify whether the input string is in format 5’6″ or not… thats all. i need to verify it in cs file (c#) not client side.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use a simple regular expression:
The regular expression “^\\d+’\\d+\”$” laid out:
Edit: Added mandatory .Net escaping of backslash within “”.