C# Numeric Test Field Validation

Class Validation{

public boolean IsNumeric(String v) {
  return v.ToCharArray().Where(x => !Char.IsDigit(x)).Count() == 0;
}
}

No comments:

Post a Comment

Running Drupal in Docker

I will assume that you have already installed docker. If you haven't installed docker please visit https://www.docker.com/ to download a...