- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
public bool IsPositiveNumber(String strNumber)
{
Regex objNotPositivePattern = new Regex("[^0-9.]");
Regex objPositivePattern = new Regex("^[.][0-9]+$|[0-9]*[.]*[0-9]+$");
Regex objTwoDotPattern = new Regex("[0-9]*[.][0-9]*[.][0-9]*");
return !objNotPositivePattern.IsMatch(strNumber) &&
objPositivePattern.IsMatch(strNumber) &&
!objTwoDotPattern.IsMatch(strNumber);
}
guest 04.09.2009 11:33 # +2
Можно было даже задеплоить IsPositiveNumber в веб сервис.
Или в отдельном потоке.
Короче видно, автор был ограничен архитектурой приложения :)