Regular Expression
-
Hello Friends i've a regular expression which take only +ve integer(0,1,2,.......) Expression="\d+$" but i want to ignore 0,i.e., it would take 1,2,3,......... pls give me expression with thanx
-
Hello Friends i've a regular expression which take only +ve integer(0,1,2,.......) Expression="\d+$" but i want to ignore 0,i.e., it would take 1,2,3,......... pls give me expression with thanx
-
Hello Friends i've a regular expression which take only +ve integer(0,1,2,.......) Expression="\d+$" but i want to ignore 0,i.e., it would take 1,2,3,......... pls give me expression with thanx
http://regexlib.com visit this link
-
Off the top of my head, you'll need something like ^0 first (i.e. not "0"), but I'd need to look it up to get the exact syntax. Hope that helps, Chris [Edit: check out http://www.codeproject.com/KB/dotnet/expresso.aspx[^ ]
i m using following tag
-
Hello Friends i've a regular expression which take only +ve integer(0,1,2,.......) Expression="\d+$" but i want to ignore 0,i.e., it would take 1,2,3,......... pls give me expression with thanx