标签: php regex
需要使用正则表达式从'web // wp'中删除//到/;
//
/
答案 0 :(得分:2)
非常简单,你只需要正确地逃避斜杠:
preg_replace('/\/\//','/','//');