1

正規表現によってスローされる Javascript ランタイム エラーに遭遇しました。正規表現は日付形式を検証します。Accepts (yyyy/mm/dd) rejects(mm/dd/yyyy) など.... JavaScript の正規表現に関する複数のサイトを読みました

http://www.javascriptkit.com/javatutors/redev2.shtml http://www.javascriptkit.com/javatutors/re2.shtml http://www.diveintojavascript.com/articles/javascript-regular-expressions http:/ /www.w3schools.com/jsref/jsref_obj_regexp.asp

私は、この式の誤りを見つけようと、数え切れないほどの時間を費やしてきました。ただし、一部の構文に関するドキュメントが見つかりません。これが私がこれまでに持っているものです。助けを借りたり、正しい方向に私を向けたりすることは大歓迎です!

^(?ni:(?=\d)((?'year'((1[6-9])|([2-9]\d))\d\d)(?'sep'[/])(?'month'0?[1-9]|1[012])\2(?'day'((?<!(\2((0?[2469])|11)\2))31)|(?<!\2(0?2)\2)(29|30)|((?<=((1[6-9]|[2-9]\d)(0[48]|[2468][048]|[13579][26])|(16|[2468][048]|[3579][26])00)\2\3\2)29)|((0?[1-9])|(1\d)|(2[0-8])))(?:(?=\x20\d)\x20|$))?((?<time>((0?[1-9]|1[012])(:[0-5]\d){0,2}(\x20[AP]M))|([01]\d|2[0-3])(:[0-5]\d){1,2}))?)$

スペースと質問を追加しました。私が持っているすべての質問の最初と最後に * があります。これが実行時エラーを引き起こしている理由も教えていただければ、それも素晴らしいことです!


^
(
    ?ni:    * What does ?ni: mean? Is it a holder of some sort?*
    (?=\d)  goes to the first digit?
    (
    (
?'year' *is this another holder/state? If so, why is it not, ?year: ? * ( (1[6-9]) | ([2-9]\d) )

        \d\d  *consumes the next two digits?*
)
(?'sep'[/]) *puts the seprator into sep?*
(?'month'0?[1-9]|1[012]) 
\2 *no idea what this does. Does it go back to start of text?*
(   
    ?'day'  *no idea what this does*
    (
            (
                ?<! *no idea what this does*
        (
             \2     
         (
             (0?[2469])
             |
             11
             )
             \2  
        )
    )   
    31
    )
    |
    (?<!\2(0?2)\2) *no idea what this does*
        (29|30)
        |
        (
            (
                ?<=    *no idea what this does*
                (
                    (
                        1[6-9]|[2-9]\d
                    )
                    (
                        0[48]
                        |
                        [2468][048]
                        |
                        [13579][26]
                    )
                    |
                    (16|[2468][048]|[3579][26])
                    00
                )
                \2  *no idea what this does*
                \3  *no idea what this does*
                \2  *no idea what this does*
            )
            29
        )
        |
        (
            (0?[1-9])
            |
            (1\d)
            |
            (2[0-8])
        )
    )
    (
        ?:   
        (?=\x20\d)\x20   *why is this using \x20 instead of \s?*
        |
        $  *no idea what this does... Does this finish the expression?*
    )
)
?
(
    (
        ?
        <time> *no idea what this does*
        (
            (
                0?
                [1-9]
                |
                1[012]
            )
            (:[0-5]\d){0,2}
            (\x20[AP]M)
        )
        |
        (
            [01]\d
            |
            2[0-3]
        )
        (:[0-5]\d){1,2} *no idea what this does*
    )
)
?

) $

4

1 に答える 1

1

1>この正規表現で日付を取得する

^(\d{4})/(\d{2})/(\d{2})$

2> 文字列が上記の正規表現と一致する場合、月、年、日を検証します!

var match = myRegexp.exec(myString);
parseInt(match[0],10);//year
parseInt(match[1],10);//month
parseInt(match[2],10);//day
于 2013-05-15T17:40:43.250 に答える