MySQL 上的 URL 正则表达式搜索和替换(在 WordPress 中)
我有一个 WordPress 博客,其中包含许多我希望替换的 URL:
对此:
http://www.newwebsite.com/?p=***< /p>
对于示例,来自于此:
对此:
我相信以下插件: http://urbangiraffe.com/plugins/search-regex/ 会用正则表达式来解决这个问题,但我正在寻找在这里使用的正确的正则表达式。
我发现 这个 stackoverflow 线程 具有类似的任务,但因为我不是太适合正则表达式了,我希望得到帮助,这样我就不会搞砸任何事情。
谢谢,
塔尔
I have a WordPress blog with numerous URL's I wish to replace from this:
To this:
For example, from this:
To this:
I believe the following plugin:
http://urbangiraffe.com/plugins/search-regex/
will do the trick with regex, but I am looking for the correct regex to use here.
I found this stackoverflow thread that has a similar task, but since I am not too apt with regex, I was hoping for help so I don't mess anything up.
Thanks,
Tal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
搜索正则表达式:
并替换为:
在 PHP 中:
Search for the regular expression:
and replace with:
In PHP: