ASP.NET Regular Expression needed for checking valid DB DataType of Money
Hey Looking for a regular expression which I can use to check for valid DB types of Money.
I.e. Examples
9.8600 11.5400
Che开发者_运维问答ers
\d+.\d{4}
Would match the two examples you give.
Regex.IsMatch("11.5400 ", @"\A\d+.\d{4}\Z");
精彩评论