正規表現を用いた10桁のモバイル番号の検証方法


この記事では、PHPまたはlaravelで正規表現を使用して、10桁のモバイル番号を検証する方法を参照してください.ここでは、jQueryの10桁のモバイル番号のregexの例をあげます.
ユーザーを介して正規表現の要件ごとに異なる形式で番号を入力することができます.このとき、フォームの妥当性検査を行うときは、ユーザーに無効な値を入力するように制限する必要があります.
では、10桁の携帯電話番号の正規表現を見ましょう
例:
<html>
<head>
   <title>How To Validate 10 Digit Mobile Number Using Regular Expression - techsolutionstuff.com 
   </title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<form>
    <h1>How To Validate 10 Digit Mobile Number Using Regular Expression - techsolutionstuff.com</h1>
   <div class="col-md-6">
    <label>Mobile Number: </label>
    <input class="form-control" type="text" name="mo_no" placeholder="Mobile Number" minlength="10" maxlength="10" required>
    <br>
    <label>Mobile Number: </label>
    <input type="text" class="form-control" name="mo_no" placeholder="Mobile Number" pattern="[1-9]{1}[0-9]{9}"  required ><br>
    <button type="submit" class="btn btn-success">Submit</button>
  </div>
</form>
</body>
</html>

閉じるこの動画はお気に入りから削除されています
  • Read More : Laravel 6 CRUD Tutorial with Example
  • Read More : Laravel Datatable Example Tutorial
  • Read More : Create Dummy Data Using Tinker In Laravel