复制 preg 替换为 javascript
是否可以用 javascript 复制这个?
preg_replace('/(.gif|.jpg|.png)/', '_thumb$1', $f['logo']);
编辑 - 我没有收到这段代码的以下错误,
未终止的字符串文字
$('#feed').prepend('
').fadeIn('slow');'+html.content+'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您尝试复制的代码存在一些问题:
请尝试以下操作:
我假设您尝试替换的字符串仅包含一个文件名。
*请参阅 PCRE_DOTALL 的文档。
There are a couple of problems with the code you are trying to replicate:
Try this instead:
I'm assuming that the string you are trying to replace contains only a single filename.
*See the documentation for PCRE_DOTALL.
是的,除了在 JavaScript 中,
replace
是字符串的方法,因此它会稍微重新排列(而且数组/对象表示法略有不同):更多信息
Yes, except that in JavaScript,
replace
is a string's method, so it would be rearranged a little (also, the array/object notation is slightly different):more info