如何以编程方式将所有反斜杠更改为netbeans 8.0中的正斜杠

时间:2014-07-10 18:59:06

标签: php regex netbeans

我必须使用包含以下反斜杠结构的代码:

require_once $doc_root . '\inc\db.php';
require_once $doc_root .'\inc\inventory_functions.php';
require_once $doc_root .'\inc\activity_functions.php';

我在整个项目中有700个位置,我想将这些更改为正斜杠,如下所示:

require_once $doc_root . '/inc/db.php';
require_once $doc_root .'/inc/inventory_functions.php';
require_once $doc_root .'/inc/activity_functions.php';

我可能需要使用正则表达式和Netbeans Replace函数来更改它。但是我不确定什么应该是正确的正则表达式语法。

1 个答案:

答案 0 :(得分:1)

NetBeans 中 - 转到Edit - > Replace in Projects,您将看到如下所示的弹出窗口。在\字段中输入Containing Text,在/字段中输入Replace With,选择ScopeFile Name Patterns(我选择* .php ):

PopupWindow

然后点击Continue - 您将获得Search Results标签,您可以在其中取消选择您不想要替换的内容。然后点击Replace <...> matches