2

次のパターンに従って、URLに一致する正規表現を実行しました。

part1-part2-part3.html

どこ

part1:は一般的な単語です
part2:はアンダースコア付きの英数字の単語で、少なくとも2文字が含まれてい
ますpart3:は1〜10桁の数字の単語です

たとえば、有効なURLは次のようになります。

news-my_news_title_200_is-12345.html

したがって、 part1
=ニュース
part2= my_news_title_200_is
part3 = 12345

私はこれに来ました:

/^[a-z]+-([a-z0-9_]*(?=[a-z]{2,})[a-z0-9_]*).-([0-9]{1,10})\.html$/

クラスで表現:

/^\w+-([\w\d_]*(?=\w{2,})[\w\d_]*).-(\d{1,10})\.html$/

しかし、REパターンのpart2を表現するためのより良い方法があると思います。

前もって感謝します。

4

3 に答える 3

1

連続していない 2 文字を一致させるには、次のようにします (例は perl で示されていますが、PCRE を理解する言語で動作します)。

use strict;
use warnings;
use 5.010;
use YAPE::Regex::Explain;

my $re = qr/^\w+-(\w*?[a-z]+\w*?[a-z]+\w*?)-\d+\.html$/;
say YAPE::Regex::Explain->new( $re )->explain;
while(<DATA>) {
    chomp;
    say ($_ =~ $re ? "match : $_" : "not match : $_");
}
__DATA__
news-my_news_title_200_is-12345.html
news-m_200_s-12345.html
news-m_200-12345.html

出力:

match : news-my_news_title_200_is-12345.html
match : news-m_200_s-12345.html
not match : news-m_200-12345.html

正規表現の説明:

(?-imsx:^\w+-(\w*?[a-z]+\w*?[a-z]+\w*?)-\d+\.html$)

matches as follows:

NODE                     EXPLANATION
----------------------------------------------------------------------
(?-imsx:                 group, but do not capture (case-sensitive)
                         (with ^ and $ matching normally) (with . not
                         matching \n) (matching whitespace and #
                         normally):
----------------------------------------------------------------------
  ^                        the beginning of the string
----------------------------------------------------------------------
  \w+                      word characters (a-z, A-Z, 0-9, _) (1 or
                           more times (matching the most amount
                           possible))
----------------------------------------------------------------------
  -                        '-'
----------------------------------------------------------------------
  (                        group and capture to \1:
----------------------------------------------------------------------
    \w*?                     word characters (a-z, A-Z, 0-9, _) (0 or
                             more times (matching the least amount
                             possible))
----------------------------------------------------------------------
    [a-z]+                   any character of: 'a' to 'z' (1 or more
                             times (matching the most amount
                             possible))
----------------------------------------------------------------------
    \w*?                     word characters (a-z, A-Z, 0-9, _) (0 or
                             more times (matching the least amount
                             possible))
----------------------------------------------------------------------
    [a-z]+                   any character of: 'a' to 'z' (1 or more
                             times (matching the most amount
                             possible))
----------------------------------------------------------------------
    \w*?                     word characters (a-z, A-Z, 0-9, _) (0 or
                             more times (matching the least amount
                             possible))
----------------------------------------------------------------------
  )                        end of \1
----------------------------------------------------------------------
  -                        '-'
----------------------------------------------------------------------
  \d+                      digits (0-9) (1 or more times (matching
                           the most amount possible))
----------------------------------------------------------------------
  \.                       '.'
----------------------------------------------------------------------
  html                     'html'
----------------------------------------------------------------------
  $                        before an optional \n, and the end of the
                           string
----------------------------------------------------------------------
)                        end of grouping
----------------------------------------------------------------------
于 2012-08-02T12:05:59.400 に答える
1

これを試して

\b(?is)[a-z]+-\w*(?=[a-z]{2,})\w*-[0-9]{1,10}\.html\b

また

^(?is)[a-z]+-\w*(?=[a-z]{2,})\w*-[0-9]{1,10}\.html$

ここで再生

于 2012-08-02T10:05:00.257 に答える
1

これを試してください:

\b[a-zA-Z]+-\w{2,}-\d{1,10}\.html\b

より強い (part2 マッチのみの数字を避ける):

\b[a-zA-Z]+-(?!\d+-)\w{2,}-\d{1,10}\.html\b
于 2012-08-02T10:18:23.407 に答える