admin 管理员组

文章数量: 1086019

How can I search for some text that has spaces in it in all JavaScript sources on website? I know that I should use "CTRL + SHIFT + F"(on Windows), but Google Chrome Developer Tools searches not for the whole sentence, but for each word that is separated by space. How to find exactly what I've typed into searchbox ?

Please see screenshot:

Is it a bug in Chrome version "33.0.1750.117" ? It worked ok previously... Is there a workaround?

How can I search for some text that has spaces in it in all JavaScript sources on website? I know that I should use "CTRL + SHIFT + F"(on Windows), but Google Chrome Developer Tools searches not for the whole sentence, but for each word that is separated by space. How to find exactly what I've typed into searchbox ?

Please see screenshot:

Is it a bug in Chrome version "33.0.1750.117" ? It worked ok previously... Is there a workaround?

Share Improve this question edited Apr 23, 2014 at 10:17 Aremyst asked Feb 26, 2014 at 18:21 AremystAremyst 1,5282 gold badges22 silver badges34 bronze badges 2
  • That's weird, mine works as expected, I'm on 33.0.1750.117 too. – LasagnaAndroid Commented Feb 26, 2014 at 18:48
  • I'm on the same version but it didn't work. I had to use Regex and search for Get\ all to get what I wanted. In the results I'm seeing Get all (with space) highlighted – heyomi Commented Feb 26, 2014 at 18:50
Add a ment  | 

1 Answer 1

Reset to default 8

Use double quotes to search for the whole sentence:

ex. "Get all"

本文标签: javascriptGoogle Chrome Developer Tools search for exact matchStack Overflow