问题描述
- 正则表达式匹配特定字符组合问题
-
请问匹配 / 的正则表达式怎么写呢?在php中我需要用preg_replace()函数将
字符串中的所有 / 替换成 / 怎么办?
解决方案
str_replace() 执行替换就行了吧,干嘛用正则替换?
http://www.w3school.com.cn/php/func_string_str_replace.asp
$s=str_replace('\/','/',$s);
解决方案二:
preg_replace("/\//","/",$te);
解决方案三:
'$result = str_replace('/','/',$input); '
解决方案四:
'$result = preg_replace('/\/','/',$input)'
解决方案五:
$result = preg_replace('/\\//','/',$input);
解决方案六:
哎,无奈了。这个markdown老是会搞笑。
$result = preg_replace('/\\//','/',$input);
解决方案七:
哎,无奈了。markdown搞死人。
$result = str_replace('\/','/',$input);
时间: 2025-01-19 02:52:58