Newer
Older
2024-Tsubasa / system / js / regex.html
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>regex</title>
</head>

<body>
    <p>regex</p>
    <script>
        // -- .test --------------------------------------------------

        const regex = /^[a-z]+$/; // 小文字のアルファベットのみで構成された文字列にマッチ
        console.log(regex.test("hello")); // true
        console.log(regex.test("Hello")); // false
        console.log(regex.test("hello123")); // false

    </script>
</body>

</html>