我需要创建一个regex函数,它将根据特定条件验证电话号码字段,并显示三种情况下的警报。 实际上,我有这3个正则表达式函数,我想将它们组合成一个单独的函数。 /^3\d{9}$/; //If it starts with 3 and has another 9 numbers it's a cellphone
/^0\d{7,10}$/; //If it starts with 0 and has another 7-10 numbers it's a landline
/^(?:00|\+)/; //If it starts with 00 or a + sign, i
我不明白如何在reactjs material UI表单中实现验证。我非常了解正则表达式,但不知道如何在表单中实现验证,以便如果值无效,它应该通过错误消息:
这是我的组件;
import React from 'react';
import TextField from '@material-ui/core/TextField';
import Button from '@material-ui/core/Button';
import { FormGroup } from '@material-ui/co