vote up -1 vote down star

Hi

I wanna validate a phone number. My condition is that I want mimimum 7 numbers in the given string, ignoring separators, X, parantheses.

Actually I want to achieve this function in regex:

Func<string, bool> Validate = s => s.ToCharArray().Where(char.IsDigit).Count() >= 7;
Func<string, bool> RegexValidate = s => System.Text.RegularExpressions.Regex.IsMatch(s, @"regex pattern should come here.")
string x = "asda 1234567 sdfasdf";
string y = "asda   sdfa 123456 sdfasdf";

bool xx = Validate(x); //true
bool yy = Validate(y); //false

The purpose of my need is I want to include this regex in an asp:RegularExpressionValidator

flag

Not all phone numbers have seven digits. What about international numbers? – Roger Lipscombe Jul 13 at 8:03
3  
Honestly, for your application, if really all you want to do is find 7 or more digits... you probably don't need a regex... it will be less efficient than doing it yourself. Why do you need regexes for this? – Tom Jul 13 at 8:07
3  
@shimmy: Why not just entertain us with why you need a regex for this... I'm sure we're all wondering. This kind of smells like hw to me. A regex is def not the way to check if a string has >= 7 numbers. – Tom Jul 13 at 8:18
2  
@Shimmy: 911 ;) There might be phone numbers with country code that have less than seven digits. You only need five digits (including the plus sign, which is needed for international numbers, but not allowed by your validation, so it's only four) for country code and area code (e.g. Hamburg would be +4940), and now you have three digits left for the actual phone number. In smaller countries it might be less. It just makes no sense to restrict numbers to seven, unless you can be really sure that there won't be any shorter number. And it's a burden if some users have to add their country code. – OregonGhost Jul 13 at 8:35
1  
-1 complete refusal to answer anyone's questions to flesh out the purpose and usefulness. – Maslow Jul 13 at 10:47
show 6 more comments

4 Answers

vote up 4 vote down check

Seven or more digits, mixed with any number of any other kind of character? That doesn't seem like a very useful requirement, but here you go:

^\D*(?:\d\D*){7,}$
link|flag
1  
This is the only regex that does what the OP wants. Good job – Philippe Leybaert Jul 13 at 8:07
1  
@activa - I fail to see where mine fails. If you could explain it to me, I'd appreciate the education! – rampion Jul 13 at 8:10
1  
\D is the opposite of \d. \D means anything that's not a digit. – rampion Jul 13 at 8:17
3  
Again, be aware that a digit in .NET's regexes includes arabic numbers, so this may not be exactly what you want. More details in Raymond Chen's blog at blogs.msdn.com/oldnewthing/archive/… – OregonGhost Jul 13 at 8:24
1  
The point is that 0-9 are not the only characters considered as a number by \d (or, more exactly, Char.IsDigit()), yet 0-9 is typically anything that is allowed in phone numbers, and int.Parse will also throw with arabic digits. – OregonGhost Jul 13 at 8:46
show 5 more comments
vote up -1 vote down
[0-9\-\(\)Xx]{7,}
link|flag
+0 - this will validate "-------", which has 0 digits. – rampion Jul 13 at 7:53
what do you mean +0 i am a complete dumb in regexes – Shimmy Jul 13 at 7:58
0000000 also works for me. ....... does not work. i don't want to check the numbers at all, only should be numbers. – Shimmy Jul 13 at 7:59
1  
Shimmy - it accepts too much. For example, it will match the string "(x)-(X)" which has 0 digits, not 7 (which is what you requested). – rampion Jul 13 at 8:03
1  
@shimmy: you must only be testing this on valid inputs... try it on the strings we suggested. – Tom Jul 13 at 8:03
show 5 more comments
vote up 1 vote down
(?:\d.*){7,}
  • (?:...) - group the contained pattern into an atomic unit
  • \d - match a digit
  • .* match 0 or more of any character
  • {7,} match 7 or more of the preceeding pattern

If the only separators you want to ignore are spaces, dashes, parentheses, and the character 'X', then use this instead:

(?:\d[- ()X]*){7,}
  • [...] creates a character class, matching any one of the contained characters

The difference being, for example, that the first regex will match "a1b2c3d4e5f6g7h", and the second one won't.

As Gregor points out in the comments, the choice of regex depends on what function you're using it with. Some functions expect a regex to match the entire string, in which case you should add an extra .* in front to match any padding before the 7 digits. Some only expect a regex to match part of a string (which is what I expected in my examples).

According to the documentation for IsMatch() it only "indicates whether the regular expression finds a match in the input string," not requires it to match the entire string, so you shouldn't need to modify my examples for them to work.

link|flag
If the regexp is to be used with 'match' not 'find', then you need another ".*" in front. – GrzegorzOledzki Jul 13 at 7:59
please refer to my function. I need 1 thing: validate that there are 7+ numbers in the string, nothing else. – Shimmy Jul 13 at 8:03
1  
@Shimmy: instead of just saying "it doesn't work"... how about you show rampion an input that it fails on... I think it's obvious he wants to understand why it is wrong (and at a glance, his regex seems right). (Again, this seems silly that you are using regex for this anyways). – Tom Jul 13 at 8:15
1  
@Shimmy - the /.../ are a conventional way to denote the beginning and ending of a regex. Some languages (like C#) don't use them in the regex themselves, some (like perl, ruby, and awk) do. They might have been why the examples weren't working for you. – rampion Jul 13 at 8:16
1  
I wish others would confirm that this regex works... because I think rampion deserves some credit since he had it right from the beginning. – Tom Jul 13 at 8:25
show 9 more comments
vote up 2 vote down

Why do you want to use regular expressions for this? The first Validate function you posted which simply counts the number of digits is vastly more comprehensible, and probably faster as well. I'd just ditch the unnecessary ToCharArray call, collapse the predicate into the Count function and be done with it:

s.Count(char.IsDigit) >= 7;

Note that if you only want to accept 'normal' numbers (i.e. 0-9) then you'd want to change the validation function, as IsDigit matches many different number representations, e.g.

s.Count(c => c >= '0' && c <= '9') >= 7;
link|flag
I said I need regex, as far as I know, in these days, the word regex has one meaning: Regular Expressions. The title of this thread yells out loudly: I need a regex. I wish I could make this word bold. – Shimmy Jul 13 at 8:19
2  
@Shimmy: all the time you are telling us you NEED a regex could have been spent telling us why... I think Greg is perfectly valid for suggesting this alternative since it's a much better approach to solving the main problem you are trying to solve... – Tom Jul 13 at 8:21
Indeed. A lot of people say they need things, but it's often because they don't really know what they need, and it's the way they believe they should do it. If you actually said why a regex is the way you have to do it, even though it is clearly not the most appropriate way to do it, then you'd get further than just ranting. – Greg Beech Jul 13 at 8:37
3  
One of the responsibilities of people who answer on these forums is to try to guide people to better choices than they were perhaps going to make before they asked the question. It's one of the reasons that this site can be better than Google, because you can also find answers you weren't looking for. As such, if you are looking for a sub-optimal solution because you have constraints imposed, then it's typically worthwhile indicating that you know what you're trying to do is sub-optimal, and some indication of the constraints that make it so. – Greg Beech Jul 13 at 8:43
I am sorry, I added comments to the question that explains the purpose of my 'NEED' – Shimmy Jul 22 at 2:35

Your Answer

Get an OpenID
or

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