Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これを見つけるためにどの正規表現を使用できますか?
&v=15151651616
&v=は静的文字列で、数字の部分は異なる場合があります。
&v=
"^&v=[0-9]+$"少なくとも1つ"^&v=[0-9]*$"の番号が必要な場合、または番号が一致してはならない場合。
"^&v=[0-9]+$"
"^&v=[0-9]*$"
別のシーケンス内で一致させたい場合は、^とを削除し$ます。これは、で始まる(^)シーケンスとで終わるシーケンスを意味します。($)
^
$
(^)
($)
次の正規表現を使用できます。
&v=\d+
これが一致&v=し、次に 1 つ以上の数字が一致します。