Maison  >  Article  >  interface Web  >  Pourquoi JavaScript RegEx ne parvient-il pas à valider les entrées ?

Pourquoi JavaScript RegEx ne parvient-il pas à valider les entrées ?

Mary-Kate Olsen
Mary-Kate Olsenoriginal
2024-10-18 13:28:30423parcourir

Why is JavaScript RegEx Failing to Validate Inputs?

Struggles with RegEx Functionality in Javascript: A Case Study from "Regex Not Working"

In the context of the query referenced in the title, "Javascript RegEx Not Working," a user encountered an issue where a regular expression (regEx) consistently returned false, regardless of the input value. The code snippet provided in the inquiry is as follows:

<code class="javascript">function checkLegalYear() {
    var val = "02/2010"; 

    if (val != '') {
        var regEx = new RegExp("^(0[1-9]|1[0-2])/\d{4}$", "g");

        if (regEx.test(val)) {
            //do something
        }
        else {
            //do something
        }
    }
}</code>

The user attempted to validate year inputs using a RegEx and experienced unexpected results. Despite testing this code in multiple online editors, the RegEx continued to return false.

Addressing the Issue:

The root of the problem lies in the method used to create the RegEx object. When defining a RegEx from a string, backslash characters must be doubled up to prevent incorrect interpretation during the parsing process. To rectify this, the following code should be used:

<code class="javascript">var regEx = new RegExp("^(0[1-9]|1[0-2])//\\d{4}$", "g");</code>

Alternatively, it's recommended to use the RegEx syntax directly, which eliminates the need for doubling backslashes:

<code class="javascript">var regEx = /^(0[1-9]|1[0-2])//\\d{4}$/g;</code>

By implementing these modifications, the RegEx should now function as intended, validating year inputs and providing accurate results.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn