Can we have a regex to detect if a number is even ?
I was wondering if we can have a regex to do this instead of usual % or bit operations.
Thanks for replies :)
|
|
Since the correct answer has already been given, I'll argue that regex would not be my first choice for this.
|
|||||
|
|
You can try:
Explanation:
|
|||||||||
|
|
If it is a string, just check if |
||||
|
|
|
Never use regex for a job that can be easily done otherwise. I came across this Microsoft blog that says the same: http://blogs.msdn.com/b/bclteam/archive/2005/02/21/377575.aspx |
|||
|