'find in path' matches too many spaces
已回答
How can I disable it?
e.g:
"\n {8}return foo\(\);"
matches
"
return foo();"
and
"
return foo();"
and
"
return foo();"
The 'find' once I open the file no longer matches the same search afterwards. Is there no way to find with s specific amount of spaces?
Regex on or off doesn'T matter.
请先登录再写评论。
Try using \s{n} (n is a number of spaces) with regexp on.