c#匹配整数和小数的正则表达式
程序员文章站
2023-11-27 21:23:10
匹配整数的一种表达式: regex.ismatch(inputerstr, "^([0-9]{1,})$") 其中inputerstr是要匹配的字符串 这个表达式仅匹配整数...
匹配整数的一种表达式:
regex.ismatch(inputerstr, "^([0-9]{1,})$")
其中inputerstr是要匹配的字符串
这个表达式仅匹配整数,如果是整数形式返回true,否则为false
匹配小数格式的表达式:
regex.ismatch(inputerstr, "^([0-9]{1,}[.][0-9]*)$")
其中inputerstr是要匹配的字符串
这个表达式仅匹配数字中有小数点格式的数字,如果是带有小数点格式的纯数字,返回true,否则为false。
regex.ismatch(inputerstr, "^([0-9]{1,})$")
其中inputerstr是要匹配的字符串
这个表达式仅匹配整数,如果是整数形式返回true,否则为false
匹配小数格式的表达式:
regex.ismatch(inputerstr, "^([0-9]{1,}[.][0-9]*)$")
其中inputerstr是要匹配的字符串
这个表达式仅匹配数字中有小数点格式的数字,如果是带有小数点格式的纯数字,返回true,否则为false。
上一篇: python实现加密的方式总结