我正在创建用于验证编辑文本字段的 reg-ex。我无法正确验证。
my condition to validate is
Example (h2/g2)
At-least have a one numerical value
slash also allowed but only one,after the "/" must have one numerical value.
alphabets also allowed
如何为这种情况创建正则表达式。任何人都知道请帮我解决这个问题
好像你想要这样的东西:(\w*/)?\w*\d\w*
请记住,在 Java 中您必须复制反斜杠\\
。
添加更多有效和无效文本的示例会有所帮助。
编辑:
回复你的评论。是的,它确实:
String value = "h2/g2";
Pattern p = Pattern.compile("(\\w*/)?\\w*\\d\\w*");
Matcher m = p.matcher(value);
Log.i("tag", "matches? " + m.matches());
印刷:
I/tag(12642): matches? true