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.
我必须允许用户仅输入血液的 RH 因子,例如-ve,+ve如何在 java 脚本中执行此操作。我也可以在java中使用同样的东西吗?
-ve,+ve
请帮忙。
问候
使用正则表达式。它在 java 和 javascript 中都可用。
检查Javascript 的 RegEx 以仅允许字母数字,以便更好地理解 regex 表达式。
for +ve and -ve var regex = /^[-+]+[v]+[e]$/i;
这是工作..我刚刚检查过..享受