Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the smallest amount of C# possible to Check that a String fits this format #-##### (1 number, a dash then 5 more numbers).

It seems to me that a regular expression could do this quick (again, I wish I knew regular expressions).

So, here is an example:

public bool VerifyBoxNumber (string boxNumber)
{
   // psudo code
   if (boxNumber.FormatMatch("#-#####")
      return true;
   return false;
}

If you know real code that will make the above comparison work, please add an answer.

share|improve this question

3 Answers

up vote 15 down vote accepted
private static readonly Regex boxNumberRegex = new Regex(@"^\d-\d{5}$");

public static bool VerifyBoxNumber (string boxNumber)
{
   return boxNumberRegex.IsMatch(boxNumber);
}
share|improve this answer
return Regex.IsMatch(boxNumber, @"^\d-\d{5}$");
share|improve this answer

^\d-\d{5}$ would be a regexp that matches only this pattern.

share|improve this answer
Wow, 3 identical regexps within 32 seconds! – LarsH Dec 6 '10 at 21:16
Think how bad it would be if there were 3 completely different regexps. – MusiGenesis Dec 6 '10 at 21:19
1  
@Music: hm, depends if they were all correct or not... – LarsH Dec 6 '10 at 21:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.