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=并">使用正则表达式,
&v=
">
NSString *YouTubeRegex = @"/amp;v=([^(\">)]+)/";
但是那个正则表达式没有返回任何匹配项?我知道编码是正确的,只是正则表达式没有任何帮助?
谢谢
假设正则表达式引擎类似于 Perl:
"/&v=(.*)>/"
应该做的伎俩。
尝试这个 :
/amp;v=(.+?)">/
http://www.rubular.com/r/Lqb63CsN2p