Biểu mẫu đăng ký của sinh viên bằng HTML và CSS có xác thực JavaScript

Biểu mẫu sinh viên được sử dụng để lấy thông tin chi tiết về sinh viên và lưu trữ chúng trong cơ sở dữ liệu để sử dụng. Biểu mẫu có thể có nhiều trường nhưng một số trường là bắt buộc, chẳng hạn như tên, số cuộn, ngày sinh, v.v. Khi sử dụng điền dữ liệu vào biểu mẫu, có khả năng nhập sai dữ liệu

Nếu dữ liệu được điền sai thì đó sẽ là vấn đề trong cơ sở dữ liệu, vì có tệp được xác định bằng loại (văn bản, INT, chuỗi, v.v. )

JavaScript sẽ giúp ngăn chặn ở giai đoạn trước để xác minh loại dữ liệu và xác thực nó

Ví dụ về biểu mẫu đăng ký của sinh viên bằng HTML có xác thực JavaScript

Sau đây là cấu trúc HTML (Tên, Mã số, và ngày sinh) cho mẫu đăng ký học sinh. Bạn có thể thêm nhiều trường đầu vào hơn trong đó, với lớp được đề cập (và cấu trúc id)

Biểu thức chính quy JavaScript được sử dụng trong Ví dụ

Ghi chú. Dạng HTML đơn giản của nó không có CSS, bạn có phong cách và thiết kế của riêng mình

<!DOCTYPE html>
<html lang="en">

<head>
    <script type="text/javascript">
        function allLetter() {
            var name = document.querySelector("#name").value;

            var letters = /^[A-Za-z]*$/;
            if (letters.test(name)) {
                return true;
            } else {
                alert("Not a valid Name");
                return false;
            }
        }

        function rollnumber() {
            var roll = document.querySelector("#roll").value;

            var phoneno = /^\d{7}$/;
            if (phoneno.test(roll)) {
                return true;
            } else {
                alert("Not a valid Roll Number");
                return false;
            }
        }

        function date() {
            var date = document.querySelector("#date").value;

            if (!date) {
                return true;
            }
            else {
                alert("Empty Date");
                return false;
            }
        }

        function check() {

            var t1 = allLetter();
            var t2 = rollnumber();
            var t3 = date();

            console.log(t1);
            console.log(t2);
            console.log(t3);

            if (t1 && t2 && t3) {
                alert("Registration Successful");
                return true;
            } else {
                alert("One or More Fields are incorrectly set");
                return false;
            }
        }
    </script>
</head>

<body>

    <h2>STUDENT REGISTRATION FORM</h2>

    <form name="form1" method="post" onsubmit="check();">
        <label for="name">Name :</label>
        <input type="text" id="name"><br>

        <label for="roll">Roll No :</label>
        <input type="text" id="roll"><br>

        <label for="date">DOB :</label>
        <input type="date" id="date"><br>

        <input type="submit" value="Register">
    </form>

</body>

</html>

đầu ra

Biểu mẫu đăng ký của sinh viên bằng HTML và CSS có xác thực JavaScript

Hãy bình luận nếu bạn có bất kỳ nghi ngờ và gợi ý nào về hướng dẫn này

Ghi chú. Tất cả mã Ví dụ về JS đều được thử nghiệm trên trình duyệt Firefox và trình duyệt Chrome

hệ điều hành. cửa sổ 10

Mã số. Phiên bản HTML5

Biểu mẫu đăng ký của sinh viên bằng HTML và CSS có xác thực JavaScript

Rohit

Bằng cấp về Khoa học Máy tính và Kỹ sư. Nhà phát triển ứng dụng và có kinh nghiệm về nhiều ngôn ngữ lập trình. Đam mê công nghệ & thích học hỏi kỹ thuật

Các biểu mẫu được sử dụng trong các trang web để người dùng nhập các chi tiết cần thiết của họ, sau đó gửi nó đến máy chủ để xử lý. Biểu mẫu còn được gọi là biểu mẫu web hoặc biểu mẫu HTML. Ví dụ về việc sử dụng biểu mẫu phổ biến trong các trang web thương mại điện tử, ngân hàng trực tuyến, khảo sát trực tuyến, v.v.  

Cú pháp biểu mẫu trong HTML

HTML




Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
31____232

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
35
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
36
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
0
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
1
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
35
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
6
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
9
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
300
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
302
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
303
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
305
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
310
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
315
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316_______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
321
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
322
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309____2332
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
315
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
303
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306____2309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309____2356
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
315
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316_______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
367
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
322
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309____2378
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
03
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
09
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
322
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
20
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
03
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
31
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
322
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
44

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
47
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
51
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
53
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
56
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
61
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
67
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
73
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
79
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
85
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
47
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306______2309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309____23007
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3008
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3009
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3011

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
315
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7____237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3015
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3016
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3008
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3018
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3030

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
51____237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3034
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37____23037
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3044

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
51____237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3048
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37____23048
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306______2309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306____16
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3061
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
31
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Xác thực biểu mẫu. Dữ liệu được nhập vào một biểu mẫu phải ở đúng định dạng và một số trường nhất định cần được điền để sử dụng hiệu quả biểu mẫu đã gửi. Tên người dùng, mật khẩu, thông tin liên hệ là một số chi tiết bắt buộc trong biểu mẫu và do đó người dùng cần cung cấp.
Dưới đây là mã bằng HTML, CSS và JavaScript để xác thực biểu mẫu.

HTML được sử dụng để tạo biểu mẫu.  

JavaScript để xác thực biểu mẫu.  

CSS để thiết kế bố cục của biểu mẫu

Xác thực biểu mẫu

JAVASCRIPT




Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3065

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3067
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3068

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3071

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23073

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3076

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3078

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3081

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23083

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3086

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23088

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3091

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23093

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3096

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3098

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3101
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3102

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3105
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3106

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3070
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3109
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3110

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3112
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3113
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
53
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3115

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3117
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3118
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3119

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3121

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3123
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3124
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3112
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3130
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
53
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3132

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3117
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3135
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3119

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23138

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3123
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3124
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3112
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3148
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
53
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3150

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3117
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3153
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3119

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23156

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3123
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3124
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3163

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3112
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3166
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
53
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3132

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3170
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3171
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3119

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23174

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3123
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3124
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3112
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3183

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3170
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3186
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3119

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23174

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3123
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3124
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3112
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3198
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
53
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3200

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3170
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3203
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3119

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3206

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3123
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3124
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3112
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3215

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3170
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3218
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3119

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23221

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3123
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3124
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3123
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3230
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33____23235

Tạo kiểu cho biểu mẫu

CSS




Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3236

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33____23238

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3240

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3242
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3243
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3244
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3247
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3243
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3249
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3250
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3251
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3254
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3243
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3256
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3259
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3260
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3243
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3262
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3265
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3262
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33____23271

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3273____23243
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3275
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3276____23125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3242
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3243
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3281
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3125

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3285

MÃ KẾT HỢP [TẤT CẢ CÁC PHẦN TRÊN ĐƯỢC GHI NHỚ)

HTML




Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3287
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3061
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3291
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____23295
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3298

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23300

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23073

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23304

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3078

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23308

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23083

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23312

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23088

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23316

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23093

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3320

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3098

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23324

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23326

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23328

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3330

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23332

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3121

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23336

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3340

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23342

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23138

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23336

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23351

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23353

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23156

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23336

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3163

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23362

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23364

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23174

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23336

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3372
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3373
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3374

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23376

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23174

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23336

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23384

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23386

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3206

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23336

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23394

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3396

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23221

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58____23336

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23004

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33____23235

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____236
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3238

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23240

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3018

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23020

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23022

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23024

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23026

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3127

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3271

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23032

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43____23034

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3127

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306______236
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3061
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3291
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3061
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
31
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
35
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
36
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
0
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
1
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
35
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
6
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
9
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
300
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
302
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
303
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
305
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
310
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
315
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316_______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
321
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
322
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309____2332
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
315
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
303
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306____2309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309____2356
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
315
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316_______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
367
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
322
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309____2378
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
03
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
09
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
322
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
20
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
03
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
316______237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
318
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
31
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
322
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
44

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
47
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
314
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
51
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
53
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
56
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
61
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
67
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
73
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
79
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
85
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
60
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
47
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306______2309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30____2327
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309____23007
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3008
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3009
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3011

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
315
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7____237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3015
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3016
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3008
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3018
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3030

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
51____237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3034
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37____23037
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
43
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
30
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
311
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
312
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3044

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
58
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
51____237
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3048
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
7
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
37____23048
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
328

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
307
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306______2309
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

 

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
33
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306____16
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3061
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
31
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
306
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
3287
Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
32

Xác thực được sử dụng trong đoạn mã trên

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
28

Ở đây chúng tôi đã sử dụng 3 Biểu thức chính quy trong Javascript để Xác thực Email, Xác thực Số điện thoại và Xác thực Tên người dùng

  • regEmail=/^\w+([\. -]?\w+)*@\w+([\. -]?\w+)*(\. \w{2,3})+$/g;

Biểu thức chính quy ở trên kiểm tra id thư hợp lệ do người dùng nhập

\w hiển thị bất kỳ ký tự từ nào bao gồm Ký tự, Số và Dấu gạch dưới

+ Biểu tượng hiển thị một hoặc nhiều tổ hợp ký tự

Các ký tự đặc biệt được sử dụng phổ biến nhất trong id thư là Dấu chấm(. ), Dấu gạch dưới (_) và (-). Do đó, chúng tôi đã đưa chúng vào \. - sự biểu lộ

* Biểu thị Không hoặc nhiều tổ hợp ký tự đã cho

$ Biểu thị Kết thúc chuỗi hoặc biểu thức chính quy

g biểu thị tất cả các kết quả khớp từ đầu đến cuối chuỗi đã cho với biểu thức chính quy. g được sử dụng để tìm tất cả các lần xuất hiện của mẫu thay vì dừng sau lần khớp đầu tiên

  • regPhone=/^\d{10}$/;

Trong phần xác thực Số điện thoại

^ biểu thị bắt đầu chuỗi và nó phải thuộc loại \d. Điều đó có nghĩa là nó chỉ nên chứa các chữ số từ 0 đến 9. Mọi ký tự không phải chữ số sẽ không được chấp nhận trong \d

{10} biểu thị rằng độ dài của các ký tự Chữ số chỉ được chính xác là 10. Không có ký tự thừa hoặc ít hơn sẽ được phép

$ Biểu thị phần cuối của chuỗi

/ và / biểu thị bắt đầu và kết thúc biểu thức chính quy

  • regName = /\d+$/g;

Dưới xác thực tên của người dùng

Tên ban đầu của người dùng không được chứa bất kỳ loại Số nào, do đó để tránh nó, chúng tôi đã sử dụng lại \d lớp ký tự sẽ chỉ chấp nhận mọi kết hợp từ 0-9 chữ số (Ở đây + biểu thị một hoặc nhiều kết hợp của bất kỳ chữ số nào từ 0 đến 9 . Sau khi xác minh đó diễn ra bằng regName. kiểm tra (tên)

Trong đó “tên” là giá trị biến do người dùng nhập vào trường tên của biểu mẫu. Nếu nó chứa bất kỳ loại giá trị Chữ số nào thì nó sẽ nhắc thông báo “Vui lòng nhập đúng tên của bạn. ”

  • Xác thực về độ dài mật khẩu

Nếu mật khẩu do người dùng nhập quá nhỏ thì trình duyệt sẽ nhắc thông báo cho người dùng rằng độ dài mật khẩu quá nhỏ hoặc tương tự

Do đó, chúng tôi cũng đã sử dụng xác thực này trong trường biểu mẫu. Nếu mật khẩu do người dùng nhập có độ dài nhỏ hơn 6 thì trình duyệt sẽ nhắc thông báo cho người dùng rằng “Mật khẩu phải dài ít nhất 6 ký tự”

Please note that Regular_Expression.test(String) will check user entered string with the standard regular expression, 
If it matches then if condition will be satisfied and !Regular_Expression.test(String) will check for alternative condition.
  • Xác thực trên các mục menu thả xuống

Nếu chúng tôi chưa chọn bất kỳ mục nào từ menu thả xuống thì nó sẽ nhắc thông báo rằng “Vui lòng nhập khóa học của bạn”. Bởi vì (-1) biểu thị rằng không có bất kỳ trường nào được chọn và các mục tùy chọn tiếp theo được coi là chỉ số 0,1,2,3,4, v.v.

Đối với mục đích lập chỉ mục. phương thức selectIndex đang được sử dụng. Nếu chúng tôi đang nhấp vào BTECH thì được chọn Index = 0, cho BBA được chọn Index = 1, v.v.

Và nếu người dùng không chọn bất kỳ tùy chọn nào thì theo mặc định, nó sẽ chọnSelectedIndex = (-1) và điều đó sẽ không xảy ra. Do đó những gì. selectIndex == (-1) được sử dụng trong điều kiện If

Kiểm tra xác thực cho mẫu trên

 

 

 

 

 

mẫu kết quả

Biểu mẫu đăng ký của sinh viên bằng HTML và CSS có xác thực JavaScript

Tham khảo.
https. // vi. wikipedia. org/wiki/Form_(HTML)

HTML là nền tảng của các trang web, được sử dụng để phát triển trang web bằng cách cấu trúc các trang web và ứng dụng web. Bạn có thể học HTML từ đầu bằng cách làm theo Hướng dẫn HTML và Ví dụ về HTML này

JavaScript được biết đến nhiều nhất để phát triển trang web nhưng nó cũng được sử dụng trong nhiều môi trường không có trình duyệt. Bạn có thể học JavaScript từ đầu bằng cách làm theo Hướng dẫn JavaScript và Ví dụ về JavaScript này

Làm cách nào để áp dụng xác thực JavaScript trong biểu mẫu đăng ký HTML?

Bước đầu tiên là xác thực Biểu mẫu trong Tên và Họ, .
chức năng xác thực() {
var fname = tài liệu. reg_form. tên;
var lname = tài liệu. reg_form. tên;
nếu (tên. giá trị. chiều dài <= 0) {
alert("Tên được yêu cầu");
tên gọi. tiêu điểm();
trả về sai;

Làm cách nào để tạo biểu mẫu đăng ký bằng JavaScript?

JavaScript bên ngoài .
Nhấp vào liên kết "Đăng ký"
Nhập email và mật khẩu và nhấp vào "ĐĂNG KÝ". Bạn sẽ được đăng nhập
Nhấp vào liên kết "Đăng xuất". Bạn sẽ thấy biểu mẫu "Đăng ký"
Nhấp vào liên kết "Đăng nhập". Nhập cùng một email và mật khẩu bạn đã sử dụng để đăng ký. Nhấp vào nút "ĐĂNG NHẬP". Bạn sẽ được đăng nhập

Làm thế nào để viết mã HTML cho mẫu đăng ký của sinh viên?

Mã 2. Đoạn mã sau mô tả cách tạo biểu mẫu đăng ký đáp ứng bằng cách sử dụng CSS. .
<. LOẠI TÀI LIỆU html>
<đầu>
họ phông chữ. Calibri, Helvetica, sans-serif;
màu nền. Hồng;

Xác thực biểu mẫu được thực hiện như thế nào trong JavaScript?

Xác thực biểu mẫu thường thực hiện hai chức năng. .
Xác thực cơ bản - Trước hết, biểu mẫu phải được kiểm tra để đảm bảo rằng tất cả các trường bắt buộc đều được điền vào. .
Xác thực định dạng dữ liệu - Thứ hai, dữ liệu được nhập phải được kiểm tra về hình thức và giá trị chính xác