开发者

How to get lines in Netbeans that starts with echo or print_r?

开发者 https://www.devze.com 2023-01-20 22:13 出处:网络
I know this is not programming related question so to speak, but since we are programmers and we might use Netbeans for PHP development.

I know this is not programming related question so to speak, but since we are programmers and we might use Netbeans for PHP development.

I am wondering h开发者_C百科ow can I get in Netbeans interface with search, macro or some other way all lines that start with echo or print_r aka as debug lines.


Not sure what you mean with "...get in Netbeans interface with search...".

To locate the lines, chose Find, tick the box regular expression, and enter

^[ \t]*(echo|print_r)

in the search box.

0

精彩评论

暂无评论...
验证码 换一张
取 消