Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要验证没有小数点和百分号的数字的文本框,例如
1%、15%、78%、100%。
我如何实现这一目标?
使用字符串Replace函数删除百分号,然后使用TryParse转整数来查看是否有有效数字。
试试看。
var value = "10%".Trim('%'); int no; if(tryParse(value, out no)) { // Your code here }