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.
我正在尝试删除作为 url 的字符串中的双正斜杠,但我不想删除http://url 将始终具有的位,到目前为止我已经想出了这个但它不起作用,
http://
#[//[^(?<=http:)]]#
它没有更换http://钻头,但也没有更换我确实希望它更换的部件。
谢谢
试试这个正则表达式,负后看:
/(?<!http:)\/\//i
preg_replace('/(?<!http:)\/\//i', '_', $url);