Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where has the Google Chrome Console Filter [_] Regex checkbox gone?

All of the Google Chrome Console documentation pages (and numerous SO answers) show a checkbox labeled "Regex" next to the filter when the filter bar is expanded, e.g., from the Command Line API Reference:

enter image description here

I use it so much that I have macros set up to paste various Regexes into it, so I'm positive I am not crazy and that it existed until very recently. I am using Google Chrome Version 57.0.2987.21 beta (64-bit) on Mac OS X, and it's no longer there:

enter image description here

Is it gone, have I done something inadvertent to hide it, or what?


Update: This might be a bug in the Beta channel: DevTools: [regression] isRegex checkbox is missing on Network and Console filter bars

like image 444
Dave Land Avatar asked Feb 04 '17 19:02

Dave Land


People also ask

Where is the console element in chrome?

Apart from clicking on "More tools-> Developer Tools", we can also open the element box using the following options: Clicking the F12 key. Using keyboard shortcut, "Ctrl + Shift + i" or "Ctrl + Shift + c" on Windows Operating System. The same command works on Chrome OS and Linux.

How do I refresh the chrome console?

Whenever you are working chrome, try this: Press F12 and open the developer tools. On the refresh button, on the top left of the browser window, do a right click.

How do I view global variable in chrome console?

Right click a Scope Variable and select Store as Global Variable . The console will immediately output the temporary name of the now globally available variable.


1 Answers

In Chrome 58+ to enter a regex simply enclose the text in /, this trick is used in some applications:

/\w+::\S/
like image 133
wOxxOm Avatar answered Nov 05 '22 18:11

wOxxOm