http://msdn.microsoft.com/en-us/library/vstudio/ae5bf541%28v=vs.100%29.aspx
^(0?[0-9]{1,2}|1[0-7][0-9]|180)$ (RANGER數字的範圍 )
^\d+$ (Regex for numbers only 只能輸入數字)
^\d{1,10}$ (Regex for 10 numbers only 只能輸入數字,最大1~10位數)
\A\b[0-9a-fA-F]+\b\Z (Hex 16進位 )
^\w+$ (Matches any of the following characters: A-Z, a-z, 0-9, and underscore. 只能輸入數字與英文字)
^\w{1,5}$ 只能輸入數字與英文字,最大1~5位數)