问题标签 [ereg-replace]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
regex - 将 ereg_replace 转换为 preg_replace 的奇妙之处
我需要将 4 个 ereg_replace 表达式转换为 preg_replace。我一直在尝试基于教程的各种组合,并没有让我的网站工作太远。
某个善良的灵魂可以帮助我解决这些问题吗?
谢谢
php - 从 ereg_replace 到 preg_replace 有什么变化?
我刚刚升级到 php 5.4,我遇到了一个需要将我的 ereg_replace 升级到 preg_replace 的常见错误,但我有点困惑。
有人可以帮我更改以下 ereg_replace
到 preg_replace?
php - php 5.3 ereg_replace 到 preg_replace
我有一个应用程序在从 php 5.2 迁移到 php 5.3 后无法运行。
即使我将上面的 ereg_replace 行更改为
$this->aSettings["name"] = preg_replace("/_/", "", $this->db);
它仍然没有从数据库中获取设置。
php - 从阿拉伯语 UTF8 + 英语字符串中去除非字母数字字符
我想从字符串中删除所有非阿拉伯语、非英语和非数字字符,破折号 (-) 除外。
我设法为这样的非英文字母数字字符做到了:
但是对于非阿拉伯字母数字字符,我尝试这样做:
但它没有去除非字母数字字符!我也试过这个答案,但它也没有用,它总是返回'0'!
希望有人可以帮助我。
php - PHP:弃用 EREG_REPLACE 到 PREG_REPLACE
PREG_REPLACE 中这个 EREG_REPLACE 函数的等价物是什么?
php - php和正则表达式,如果用户输入美元符号和百分号,如何去掉它?
基本上,这需要做的只是接受一个价格值,它只能是 40 或 39.95 或 100.09 或 4 等,如果用户在字段中输入除数字以外的任何内容,则会返回错误。
我的问题:我该如何更改它,以便如果用户在输入字段中输入一个美元符号,它只是被剥离而不是在那种特定情况下返回错误?
php - ereg_replace 代码
我将我的 php 更新到 5.3,我的 ereg_replace 有问题
如果我更改ereg_replace
为preg_replace
我收到警告:
消息:preg_replace() [function.preg-replace]: Unknown modifier ']'
有人可以帮我修复 preg_replace
c# - C# 中的 ereg_replace 等效项
我需要知道如何no = ereg_replace(" .*", "", $command[$i]);
在c#中使用$等价物,我是模式匹配的新手,谁能告诉我c#中模式匹配的例子?
php - 将此 ereg_replace 转换为 preg_replace
我需要在此声明中将 ereg 替换更改为 preg 替换:
但是,当我进行更改时它会出错。
关于修复的任何想法,以使这项工作?
php - 快速 ereg_replace 到 preg_replace
我正在学习 PHP 函数并且遇到了这个问题:
我需要更改函数 *ereg_replace*
到 *preg_replace*
怎么做 ?
谢谢