I want to validate 10 digit number which should start with 91
or +91
var expr = new Regex(@"^((\+){0,1}91(\s){0,1}(\-){0,1}(\s){0,1}){0,1}9[0-9](\s){0,1}(\-){0,1}(\s){0,1}[1-9]{1}[0-9]{7}$");
This here only matches 10 digit which start with 9.
input: 919234521098,9876543210;+919876543211;919876543212
op :919234521098,+919876543211;919876543212
Thanks