正则表达式
可能各位大侠还不明白小弟的意思我写的是控制台应用程序例如下面这段小程序Module Module1
Sub Main() Dim i As Integer i = Console.ReadLine() --------(1) Console.WriteLine(i)
End Sub
End Module 在(1)中我需要判断输入的数据是不是integer型,如是且它是0--10的整数,我需要把它存到一个变量i中,以便在下面的程序中对它进行操作.而如果此时用户输入的是字符型的话,这个程序就会出错!有劳各位给小弟解忧,谢谢大家!
Sub Main() Dim i As string i = Console.ReadLine() --------(1) if not isnumeric(i) then Console.WriteLine("Invalid data type!") exit sub else if val(i)<0 or val(i)>10 then Console.WriteLine("Parameter should be between 0 and 10") exit sub end if Console.WriteLine(i)