首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

正则表达式,该怎么处理

2012-04-05 
正则表达式this is test把is 替换成 a 但this不能变[解决办法]echo preg_replace(/\bis\b/, a, this

正则表达式
this is test  

把is 替换成 a 但 this不能变

[解决办法]
echo preg_replace('/\bis\b/', 'a', 'this is test');//this a test

热点排行