RosettaCodeData/Task/Determine-if-a-string-is-numeric/Visual-Basic-.NET/determine-if-a-string-is-numeric.visual

6 lines
89 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
Dim Value As String = "+123"
If IsNumeric(Value) Then
PRINT "It is numeric."
End If