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.
質問は非常に単純に思えます。次のようなフレーズに一致する正規表現が必要です。
"/product/12/show "
私はそれが好きかもしれないことを知っています
"/product/\d+/show"
しかし、php関数preg_matchに適用すると失敗しました。
$your_string_to_match = "/product/12/show"; if (preg_match('#^/product/\d+/show#', $your_string_to_match)) { // matched }