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.
次の文字列を指定します。
domain.com/?services&dsadasdhk&hdahjkda&fdsfsdfdsd
PCRE 正規表現を使用して、amp(&) 記号の最初の出現をどのように一致させることができますか?
ちょうど試して
/&/
それは特別なことではありません。
ここでRegexrを参照してください
これにより、そのアンパサンドをキャプチャできます。
^[^&]*(&)
capture を使用せずに一致させるだけの場合は、否定後読みを使用できます。
(?<!.*&.*)&