i want to test whether a string is numeric or not. like the function of isnumeric in VB. i found this
Regex isNumeric = new Regex("[09]");
bool x = isNumeric.IsMatch(myString);
in
but i don't know how can i use Regex, which refenece should i use for that. i cann't access to it . and also i didn't find any help for that .i am using asp.net 1.0
Regex isNumeric = new Regex("[09]");
bool x = isNumeric.IsMatch(myString);
in
but i don't know how can i use Regex, which refenece should i use for that. i cann't access to it . and also i didn't find any help for that .i am using asp.net 1.0