JavaScript RegEx テストが失敗するのはなぜですか?

Barbara Streisand
リリース: 2024-10-18 13:27:02
オリジナル
519 人が閲覧しました

Why Does JavaScript RegEx Testing Fail?

JavaScript RegEx Testing Fails: Decoding the Issue

In the realm of JavaScript, a developer encountered a puzzling dilemma: their regular expression pattern consistently yielded false results for any input. Upon sharing their code with online editors, it surprisingly functioned as intended. A closer examination revealed the culprit: improper backslash handling.

Originally, the developer defined the regular expression as a string:

<code class="javascript">var regEx = new RegExp("^(0[1-9]|1[0-2])/\d{4}$", "g");</code>
ログイン後にコピー
ログイン後にコピー

However, when constructing a regular expression from a string, it's crucial to double each backslash character. This is because the parser interprets the string literal and applies its own rules for backslashes, resulting in a modified expression that differs from the intended pattern.

By omitting the backslash doubling, the pattern became:

^(0[1-9]|1[0-2])/d{4}$
ログイン後にコピー

Instead, the backslashes should be doubled within the string:

<code class="javascript">var regEx = new RegExp("^(0[1-9]|1[0-2])/\d{4}$", "g");</code>
ログイン後にコピー
ログイン後にコピー

This modification ensures that the parser interprets the pattern correctly, allowing it to recognize the desired format for months and years.

Furthermore, it's worth considering using regular expression syntax directly:

<code class="javascript">var regEx = /^(0[1-9]|1[0-2])\/\d{4}$/g;</code>
ログイン後にコピー

This eliminates the need for string interpolation and provides a more intuitive syntax for expressing the pattern.

以上がJavaScript RegEx テストが失敗するのはなぜですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート