Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个很重的 php 文件,其中包含大量变量,如下所示:
floatval($string)
$string总是一个不同的字符串,但我想删除所有这些浮点数。有什么简单的去除方法floatval($anything)?
$string
floatval($anything)
如果重要,我会使用 Sublime。
使用搜索和替换 ( ctrl + H)。此外,选择“正则表达式”选项。然后搜索floatval\(\$[a-zA-Z]*\)并替换为空。
ctrl + H
floatval\(\$[a-zA-Z]*\)
您想使用正则表达式来搜索该模式并进行替换,如该问题的答案中所述。匹配的表达式类似于:
floatval\(\$([a-zA-Z_][a-zA-Z0-9_]+)\)
和替换一个:
\$\1