用于解析图像大小的正则表达式

用于解析图像大小的正则表达式

本文介绍了用于解析图像大小的正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我在创建正则表达式以解析大小时遇到问题,除了用逗号分隔。 Ex。 34,34 =成功 34,34a =失败 我只想要两个数字的匹配,我已经尝试了正则表达式 Regex.IsMatch(输入,([0-9 ],[0-9])); 几乎可行,但匹配第二对后的字母。 我找了一些例子,但大多数都是用javascript编写的,我几乎可以肯定C#的正则表达式是不同的。 我也知道有其他选择将字符串解析为大小,但我正在努力寻找正常工作的正则表达式。 祝你好运, austinbox 解决方案 I'm having a problem with creating a regular expression to parse a Size, except delimited by a comma.Ex.34,34 = success34,34a = failI only want a match of two numbers, I've tried the regular expressionRegex.IsMatch(input, "([0-9],[0-9])");"And almost works, but matches letters succeeding the second pair.I've looked for examples, but most are in javascript and I've almost sure C#'s regex is different.I also know there are alternatives to parsing a string into a Size, but I'm striving to find a working regex.Best regards,austinbox 解决方案 这篇关于用于解析图像大小的正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-28 20:12