How to check if string contain only digits in C#

1 Answer

0 votes
using System;
using System.Text.RegularExpressions;

namespace ConsoleApplication_C_Sharp
{
    static class Program
    {
        static void Main()
        {
            string s1 = "C#NET13Java89Python";
            Console.WriteLine(Regex.IsMatch(s1, "^[0-9]*$"));


            string s2 = "!**!***!";
            Console.WriteLine(Regex.IsMatch(s2, "^[0-9]*$"));


            string s3 = "C# 13 Java 89 Python";
            Console.WriteLine(Regex.IsMatch(s3, "^[0-9]*$"));


            string s4 = "C#JavaPython";
            Console.WriteLine(Regex.IsMatch(s4, "^[0-9]*$"));


            string s5 = "c#javapython";
            Console.WriteLine(Regex.IsMatch(s5, "^[0-9]*$"));


            string s6 = "C#JAVAPYTHON";
            Console.WriteLine(Regex.IsMatch(s6, "^[0-9]*$"));


            string s7 = "1230998";
            Console.WriteLine(Regex.IsMatch(s7, "^[0-9]*$"));
        }
    }
}


/*
run:
  
False
False
False
False
False
False
True
   
*/

 



answered Oct 11, 2018 by avibootz
edited Oct 11, 2018 by avibootz

Related questions

1 answer 120 views
1 answer 134 views
1 answer 171 views
1 answer 185 views
...