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 上查看
这将允许您捕获该与号。
^[^&]*(&)
如果你只想匹配而不捕获,你可以使用否定的lookbehind。
(?<!.*&.*)&