Hey Everyone,
I have a simple problem I have a phone like this: +1 (123) 123-1234 and I want to just take the numbers out of that string using regex. Any help will be greatly appreciated.
Thanks
|
2
|
|
|
|
|
|
This will strip out an non-numeric characters:
|
||||||||||||||
|
|
|
Using RegEx is one solution. Another way would be to use LINQ (provided you are using .Net 3.5)
The end result is the same, but I think LINQ offers some advantages over RegEx in this case. First, readability. The RegEx requires you to know that "D" means Non digit (compared to Char.IsDigit())- there is confusion about that already in the comments here. Also, I did a very simple benchmark, performing each method 100,000 times. LINQ: 127ms RegEx: 485ms So, at a quick glance, it seems like LINQ out performs Regex in this situation. And, I'd argue it is more readable.
|
||||||||||||
|
|
|
|
||||
|
|
|
Why not just do a replace?
|
||||||||||||
|